blob: 414721fee066f1995d1c96c66fb9920797b418af [file] [log] [blame]
java_test(
name = 'example',
srcs = glob(['MyTest.java']),
deps = [
':junit',
],
)
java_test(
name = 'nontestclass',
srcs = glob(['*.java']),
deps = [
':junit',
],
)
prebuilt_jar(
name = 'junit',
binary_jar = 'junit-4.11.jar',
deps = [
':hamcrest-core',
':hamcrest-library',
],
)
prebuilt_jar(
name = 'hamcrest-core',
binary_jar = 'hamcrest-core-1.3.jar',
)
prebuilt_jar(
name = 'hamcrest-library',
binary_jar = 'hamcrest-library-1.3.jar',
)