return
Some checks failed
Java Google Checkstyle / Checkstyle Linter (pull_request) Successful in 21s
Build with gradle / Build-with-gradle (pull_request) Failing after 1m19s

This commit is contained in:
2026-01-24 01:18:35 -06:00
parent cd6baaea25
commit 9c9b20ea39

View File

@@ -1,6 +1,5 @@
package com.softwaresmyth.functions;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import java.util.function.BiConsumer;
@@ -15,7 +14,6 @@ class NoopTest {
void TestOneArg() {
Consumer<String> toTest = OrNot::noop;
toTest.accept("Ignored");
Assertions.fail("test failure");
}
/**