diff options
Diffstat (limited to 'src/Q3/CreditCardTest.java')
| -rw-r--r-- | src/Q3/CreditCardTest.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Q3/CreditCardTest.java b/src/Q3/CreditCardTest.java new file mode 100644 index 0000000..3b8744b --- /dev/null +++ b/src/Q3/CreditCardTest.java @@ -0,0 +1,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); + } +} |
