diff options
| author | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2019-06-11 20:01:53 -0300 |
|---|---|---|
| committer | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2019-06-11 20:01:53 -0300 |
| commit | 71c35c0ffba04e7c7932ffa06b9528b2a5efb48d (patch) | |
| tree | d33fa0bffc0ead53242c5e702159ddd78d9c277f /src | |
Initial commit
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/java/bjc/replpair/App.java | 13 | ||||
| -rw-r--r-- | src/test/java/bjc/replpair/AppTest.java | 20 |
2 files changed, 33 insertions, 0 deletions
diff --git a/src/main/java/bjc/replpair/App.java b/src/main/java/bjc/replpair/App.java new file mode 100644 index 0000000..22fe770 --- /dev/null +++ b/src/main/java/bjc/replpair/App.java @@ -0,0 +1,13 @@ +package bjc.replpair; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/test/java/bjc/replpair/AppTest.java b/src/test/java/bjc/replpair/AppTest.java new file mode 100644 index 0000000..a81acfd --- /dev/null +++ b/src/test/java/bjc/replpair/AppTest.java @@ -0,0 +1,20 @@ +package bjc.replpair; + +import static org.junit.Assert.assertTrue; + +import org.junit.Test; + +/** + * Unit test for simple App. + */ +public class AppTest +{ + /** + * Rigorous Test :-) + */ + @Test + public void shouldAnswerWithTrue() + { + assertTrue( true ); + } +} |
