From e50ad369b48f8c993bcd9e1b24dd4995eca5a550 Mon Sep 17 00:00:00 2001 From: mo khan Date: Mon, 16 Mar 2020 14:32:54 -0600 Subject: Fix namespaces --- .../java/com/mycompany/mydepartment/AppTest.java | 43 +++++++--------------- 1 file changed, 14 insertions(+), 29 deletions(-) (limited to 'src/test/java') 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 ); + } } -- cgit v1.2.3