summaryrefslogtreecommitdiff
path: root/dice/src/test/java/bjc/dicelang
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-25 12:22:56 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-25 12:22:56 -0300
commitcb9b235a59a2e136f3b850966a8820dee2f90969 (patch)
tree8da1ee90f36ddc3f9e7ac7443b0ca087ab2bf2c2 /dice/src/test/java/bjc/dicelang
parent7bda9de511a5642efb297eae98c6ea7c42b27754 (diff)
Start splitting dice to a new module
Diffstat (limited to 'dice/src/test/java/bjc/dicelang')
-rw-r--r--dice/src/test/java/bjc/dicelang/AppTest.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/dice/src/test/java/bjc/dicelang/AppTest.java b/dice/src/test/java/bjc/dicelang/AppTest.java
new file mode 100644
index 0000000..6ffe98a
--- /dev/null
+++ b/dice/src/test/java/bjc/dicelang/AppTest.java
@@ -0,0 +1,38 @@
+package bjc.dicelang;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+/**
+ * Unit test for simple App.
+ */
+public class AppTest
+ extends TestCase
+{
+ /**
+ * Create the test case
+ *
+ * @param testName name of the test case
+ */
+ public AppTest( String testName )
+ {
+ super( testName );
+ }
+
+ /**
+ * @return the suite of tests being tested
+ */
+ public static Test suite()
+ {
+ return new TestSuite( AppTest.class );
+ }
+
+ /**
+ * Rigourous Test :-)
+ */
+ public void testApp()
+ {
+ assertTrue( true );
+ }
+}