diff options
| author | Benjamin Culkin <scorpress@gmail.com> | 2024-01-02 20:20:48 -0500 |
|---|---|---|
| committer | Benjamin Culkin <scorpress@gmail.com> | 2024-01-02 20:20:48 -0500 |
| commit | 1279d65720a6cfe3491560616dd0f8092253b83f (patch) | |
| tree | 205729184c6e596ba48755203b5f3cb7320fbe67 /src | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/java/com/ashardalon/aleister/App.java | 13 | ||||
| -rw-r--r-- | src/test/java/com/ashardalon/aleister/AppTest.java | 20 |
2 files changed, 33 insertions, 0 deletions
diff --git a/src/main/java/com/ashardalon/aleister/App.java b/src/main/java/com/ashardalon/aleister/App.java new file mode 100644 index 0000000..a7b69c8 --- /dev/null +++ b/src/main/java/com/ashardalon/aleister/App.java @@ -0,0 +1,13 @@ +package com.ashardalon.aleister; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/test/java/com/ashardalon/aleister/AppTest.java b/src/test/java/com/ashardalon/aleister/AppTest.java new file mode 100644 index 0000000..311d797 --- /dev/null +++ b/src/test/java/com/ashardalon/aleister/AppTest.java @@ -0,0 +1,20 @@ +package com.ashardalon.aleister; + +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 ); + } +} |
