summaryrefslogtreecommitdiff
path: root/src/Q3/CartesianCoordinateSystemTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Q3/CartesianCoordinateSystemTest.java')
-rw-r--r--src/Q3/CartesianCoordinateSystemTest.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Q3/CartesianCoordinateSystemTest.java b/src/Q3/CartesianCoordinateSystemTest.java
deleted file mode 100644
index 9906323..0000000
--- a/src/Q3/CartesianCoordinateSystemTest.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package ca.mokhan.test;
-
-import Q3.*;
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-public class CartesianCoordinateSystemTest extends TestCase {
- private CartesianCoordinateSystem subject;
-
- public CartesianCoordinateSystemTest(String testName) {
- super(testName);
- this.subject = new CartesianCoordinateSystem();
- }
-
- public static Test suite() {
- return new TestSuite(CartesianCoordinateSystemTest.class);
- }
-
- public void testDistanceBetweenPoints() {
- assertEquals(7.28, subject.calculateDistance(-2, -3, -4, 4));
- }
-}