added gradle script, set up dependencies

This commit is contained in:
Aidan Hahn 2019-05-15 12:29:36 -07:00
parent 1c7ba5654a
commit 0808f6288e
No known key found for this signature in database
GPG key ID: 327711E983899316
9 changed files with 371 additions and 0 deletions

View file

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