Skip to content

Commit 06a1be4

Browse files
committed
Init
1 parent 263004c commit 06a1be4

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package org.nulldev.AdvancedPlusOne;
2+
3+
import junit.framework.Test;
4+
import junit.framework.TestCase;
5+
import junit.framework.TestSuite;
6+
7+
public class AppTest
8+
extends TestCase {
9+
public AppTest(String testName) { super(testName); }
10+
public static Test suite() { return new TestSuite(AppTest.class); }
11+
public void testApp() { AppTest.assertTrue((boolean)true); }
12+
}
13+

0 commit comments

Comments
 (0)