aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorEduardo Pedroni <e.pedroni91@gmail.com>2015-06-06 16:30:51 +0200
committerEduardo Pedroni <e.pedroni91@gmail.com>2015-06-06 16:30:51 +0200
commit8059c378fa11b835beb813e73ea6c57ddeca8553 (patch)
tree592c0285e7999850db0fe4cfb29fe3c668286b31 /test
parent4c5d38229b2526322fcf62a5c96b252534389e86 (diff)
Refactored CLI, exceptions are handled properly now. Started looking into UI testing for the CLI.
Diffstat (limited to 'test')
-rw-r--r--test/eu/equalparts/test/ui/CLITest.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/eu/equalparts/test/ui/CLITest.java b/test/eu/equalparts/test/ui/CLITest.java
new file mode 100644
index 0000000..4a7ebac
--- /dev/null
+++ b/test/eu/equalparts/test/ui/CLITest.java
@@ -0,0 +1,34 @@
+package eu.equalparts.test.ui;
+
+import static org.junit.Assert.*;
+
+import org.junit.After;
+import org.junit.AfterClass;
+import org.junit.Before;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+public class CLITest {
+
+ @BeforeClass
+ public static void setUpBeforeClass() throws Exception {
+ }
+
+ @AfterClass
+ public static void tearDownAfterClass() throws Exception {
+ }
+
+ @Before
+ public void setUp() throws Exception {
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ }
+
+ @Test
+ public void test() {
+ fail("Not yet implemented");
+ }
+
+}