blob: c7fd96d2cbfb932e08f9ed81c2f7ccc643fe7673 [file] [log] [blame]
java_library(
name = 'testutil',
srcs = [
'FakeStep.java',
],
deps = [
'//src/com/facebook/buck/step:step',
],
visibility = [
'//test/...',
],
)
java_test(
name = 'step',
srcs = glob(['*Test.java']),
source_under_test = [
'//src/com/facebook/buck/step:step',
],
deps = [
':testutil',
'//lib:easymock',
'//lib:guava',
'//lib:junit',
'//src/com/facebook/buck/event:event',
'//src/com/facebook/buck/step:step',
'//src/com/facebook/buck/util:io',
'//src/com/facebook/buck/util:util',
'//test/com/facebook/buck/event:testutil',
'//test/com/facebook/buck/testutil:testutil',
'//test/com/facebook/buck/timing:testutil',
],
)