update readme #2

Merged
numbers merged 15 commits from test-build into main 2026-01-24 13:05:13 -06:00
Showing only changes of commit 3e304a146d - Show all commits
@@ -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");
}
}