From 3e304a146d9fa65591f8da7a0b06794c4698ba24 Mon Sep 17 00:00:00 2001 From: Josh Chester Date: Sat, 24 Jan 2026 01:06:43 -0600 Subject: [PATCH] dodge checkstyle --- .../java/com/softwaresmyth/functions/NoopTest.java | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) 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