dodge checkstyle
This commit is contained in:
@@ -7,21 +7,24 @@ import java.util.function.BiConsumer;
|
||||
import java.util.function.Consumer;
|
||||
|
||||
class NoopTest {
|
||||
|
||||
/**
|
||||
* Test as a function with one argument.
|
||||
*/
|
||||
@Test
|
||||
void TestOneArg() {
|
||||
Consumer<String> toTest = OrNot::noop;
|
||||
toTest.accept("Ignored");
|
||||
}
|
||||
|
||||
/**
|
||||
* Test as a function with two argument.s
|
||||
*/
|
||||
@Test
|
||||
void TestTwoArg() {
|
||||
BiConsumer<Double, Boolean> toTest = OrNot::noop;
|
||||
toTest.accept(0.0, false);
|
||||
}
|
||||
|
||||
@Test
|
||||
void TestThreeArg() {
|
||||
Assertions.fail("Not yet implemented");
|
||||
Assertions.fail("test failure");
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user