Init project

This commit is contained in:
SemvdH
2025-10-14 18:24:24 +02:00
parent c3e4aacd2e
commit a8121a66b9
6 changed files with 133 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package nl.interestingcorner;
/**
* Hello world!
*/
public class App {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}

View File

@@ -0,0 +1,19 @@
package nl.interestingcorner;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
/**
* Unit test for simple App.
*/
public class AppTest {
/**
* Rigorous Test :-)
*/
@Test
public void shouldAnswerWithTrue() {
assertTrue(true);
}
}