blob: 3b8744ba6ba4d0628d12840411c167550cc29c86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package ca.mokhan.test;
import Q3.*;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public class CreditCardTest extends TestCase {
public CreditCardTest(String testName) {
super(testName);
}
public static Test suite() {
return new TestSuite(CreditCardTest.class);
}
public void testTruthy() {
assertEquals(true, true);
assertTrue(true);
}
}
|