initial project files
Some checks failed
Build / Gradle-Build (push) Failing after 2m29s
Publish / Gradle-Publish (push) Failing after 12s
Test / Gradle-Test (push) Failing after 11s

This commit is contained in:
2025-04-08 00:05:27 +02:00
parent e868b252e8
commit 685701f103
16 changed files with 672 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/*
* This source file was generated by the Gradle 'init' task
*/
package net.tomatentum.cutin;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class LibraryTest {
@Test void someLibraryMethodReturnsTrue() {
Library classUnderTest = new Library();
assertTrue(classUnderTest.someLibraryMethod(), "someLibraryMethod should return 'true'");
}
}