First commit.

This commit is contained in:
Erik C. Thauvin 2018-06-29 20:21:27 -07:00
commit 17c072b192
39 changed files with 1817 additions and 0 deletions

Binary file not shown.

View file

@ -0,0 +1,12 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
public class App {
public String getGreeting() {
return "Hello world.";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
}
}

View file

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