From 8059c378fa11b835beb813e73ea6c57ddeca8553 Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Sat, 6 Jun 2015 16:30:51 +0200 Subject: Refactored CLI, exceptions are handled properly now. Started looking into UI testing for the CLI. --- test/eu/equalparts/test/ui/CLITest.java | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 test/eu/equalparts/test/ui/CLITest.java (limited to 'test') 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"); + } + +} -- cgit v1.2.3