Initial, plain Gradle Java application
This commit is contained in:
commit
fcc0acb7e8
11 changed files with 457 additions and 0 deletions
14
app/src/test/java/sudoku/AppTest.java
Normal file
14
app/src/test/java/sudoku/AppTest.java
Normal 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");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue