Initial, plain Gradle Java application

This commit is contained in:
Imbus 2023-12-05 12:39:42 +01:00
commit fcc0acb7e8
11 changed files with 457 additions and 0 deletions

View file

@ -0,0 +1,14 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package sudoku;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class AppTest {
@Test void appHasAGreeting() {
App classUnderTest = new App();
assertNotNull(classUnderTest.getGreeting(), "app should have a greeting");
}
}