Add tests for java jni bindings

Summary: Add tests for java jni integration

Reviewed By: lucasr

Differential Revision: D4008411

fbshipit-source-id: c896a3925ff3f7fa368176a3d03c84eb7188ef60
This commit is contained in:
Emil Sjolander
2016-10-12 09:55:04 -07:00
committed by Facebook Github Bot
parent 8939bcb96d
commit df6b4d3682
5 changed files with 88 additions and 0 deletions

View File

@@ -43,3 +43,14 @@ java_library(
],
visibility = ['PUBLIC'],
)
java_test(
name = 'tests',
srcs = glob(['tests/**/*.java']),
deps = [
':java',
JUNIT_TARGET,
],
use_cxx_libraries = True,
cxx_library_whitelist = CXX_LIBRARY_WHITELIST,
)