diff --git a/src/test/java/com/softwaresmyth/functions/NoopTest.java b/src/test/java/com/softwaresmyth/functions/NoopTest.java index 2ab9790..9ec07b3 100644 --- a/src/test/java/com/softwaresmyth/functions/NoopTest.java +++ b/src/test/java/com/softwaresmyth/functions/NoopTest.java @@ -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 toTest = OrNot::noop; toTest.accept("Ignored"); } + /** + * Test as a function with two argument.s + */ @Test void TestTwoArg() { BiConsumer toTest = OrNot::noop; toTest.accept(0.0, false); - } - - @Test - void TestThreeArg() { - Assertions.fail("Not yet implemented"); + Assertions.fail("test failure"); } } \ No newline at end of file