master
 1package ca.mokhan.comp268;
 2
 3import junit.framework.Test;
 4import junit.framework.TestCase;
 5import junit.framework.TestSuite;
 6
 7public class AppTest extends TestCase {
 8  public AppTest(String testName) {
 9    super(testName);
10  }
11
12  public static Test suite() {
13    return new TestSuite(AppTest.class);
14  }
15
16  public void testApp() {
17    assertTrue(true);
18  }
19}