summaryrefslogtreecommitdiff
path: root/src/test/java
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-03-16 14:32:54 -0600
committermo khan <mo.khan@gmail.com>2020-03-16 14:32:54 -0600
commite50ad369b48f8c993bcd9e1b24dd4995eca5a550 (patch)
tree4d80fd849738cc7e3d65f6772c23d6d3adace5f1 /src/test/java
parent56a2406f1a1a6a50546dcc73f681bc3ee6c44b42 (diff)
Fix namespaces
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/com/mycompany/mydepartment/AppTest.java43
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 );
+ }
}