diff options
Diffstat (limited to 'src/test/java/com')
| -rw-r--r-- | src/test/java/com/mycompany/mydepartment/AppTest.java | 43 |
1 files changed, 14 insertions, 29 deletions
diff --git a/src/test/java/com/mycompany/mydepartment/AppTest.java b/src/test/java/com/mycompany/mydepartment/AppTest.java index aef8aa8..fb4197f 100644 --- a/src/test/java/com/mycompany/mydepartment/AppTest.java +++ b/src/test/java/com/mycompany/mydepartment/AppTest.java @@ -1,38 +1,23 @@ -package com.mycompany.mydepartment; +package com.gitlab.xlgmokha; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; -/** - * Unit test for simple App. - */ -public class AppTest - extends TestCase +public class AppTest extends TestCase { - /** - * Create the test case - * - * @param testName name of the test case - */ - public AppTest( String testName ) - { - super( testName ); - } + public AppTest( String testName ) + { + super( testName ); + } - /** - * @return the suite of tests being tested - */ - public static Test suite() - { - return new TestSuite( AppTest.class ); - } + public static Test suite() + { + return new TestSuite( AppTest.class ); + } - /** - * Rigourous Test :-) - */ - public void testApp() - { - assertTrue( true ); - } + public void testApp() + { + assertTrue( true ); + } } |
