diff options
| author | mo <mo.khan@gmail.com> | 2019-06-06 21:04:05 -0600 |
|---|---|---|
| committer | mo <mo.khan@gmail.com> | 2019-06-06 21:04:05 -0600 |
| commit | 8de51042b430c56780137a0286e1135ee7ca8abd (patch) | |
| tree | 7b64c7520ec945e38653ab1a01caa7711f3d7543 /src/Q3/CreditCardTest.java | |
| parent | f071592d77d136e90ad481a4e1a5bc11a5f52026 (diff) | |
flush out Q3 API
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); + } +} |
