fiddle
Some checks failed
Build with gradle / Build-with-gradle (pull_request) Failing after 52s
Java Google Checkstyle / Checkstyle Linter (pull_request) Failing after 21s

This commit is contained in:
2026-01-24 01:15:52 -06:00
parent b063cf3eeb
commit cd6baaea25

View File

@@ -15,6 +15,7 @@ class NoopTest {
void TestOneArg() {
Consumer<String> toTest = OrNot::noop;
toTest.accept("Ignored");
Assertions.fail("test failure");
}
/**
@@ -24,7 +25,6 @@ class NoopTest {
void TestTwoArg() {
BiConsumer<Double, Boolean> toTest = OrNot::noop;
toTest.accept(0.0, false);
Assertions.fail("test failure");
}
}