We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 263004c commit 06a1be4Copy full SHA for 06a1be4
src/org/nulldev/AdvancedPlusOne/AppTest.java
@@ -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