diff options
Diffstat (limited to 'test/eu/equalparts')
-rw-r--r-- | test/eu/equalparts/test/ui/CLITest.java | 34 |
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"); + } + +} |