Add gradle project and .gitignore

This commit is contained in:
2022-02-15 08:44:57 +01:00
parent a958e72627
commit 2e338ba5ae
10 changed files with 519 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package lightcontainer;
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");
}
}