test failing unit test
Some checks failed
Java Google Checkstyle / Checkstyle Linter (pull_request) Failing after 21s
Build with cached gradle / Build-with-gradle (pull_request) Has been cancelled

This commit is contained in:
2026-01-24 00:47:05 -06:00
parent 3d049720a9
commit 07b6322d14
2 changed files with 8 additions and 2 deletions

View File

@@ -15,5 +15,5 @@ jobs:
# cache-dependency-path: | # optional
# sub-project/*.gradle*
# sub-project/**/gradle-wrapper.properties
- run: ./gradlew build --no-daemon
- run: ./gradlew publishAllPublicationsToGiteaRepository -PgradleKey="${{ secrets.GRADLE_KEY }}" --configuration-cache
# - run: ./gradlew build --no-daemon
- run: ./gradlew publishAllPublicationsToGiteaRepository -PgradleKey="${{ secrets.GRADLE_KEY }}" --no-daemon

View File

@@ -1,5 +1,6 @@
package com.softwaresmyth.functions;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import java.util.function.BiConsumer;
@@ -18,4 +19,9 @@ class NoopTest {
toTest.accept(0.0, false);
}
@Test
void TestThreeArg() {
Assertions.fail("Not yet implemented");
}
}