<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>.settings/org.eclipse.jdt.core.prefs</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,9 +1,10 @@
 package name.reid.mark.geovex;
 
+import junit.framework.TestCase;
 
-public class DualCurveTest {
 
-//	@Test
+public class DualCurveTest extends TestCase {
+
 	public void testGetPoint() {
 		ROCSIConverter convert = new ROCSIConverter();
 		SpecCurve c = new SpecCurve();
@@ -11,7 +12,7 @@ public class DualCurveTest {
 		c.add(1,1);
 		
 		GCurve dual = new DualCurve(c, convert);
-//		assertEquals(&quot;Size&quot;, 3, dual.size());
+		assertEquals(&quot;Size&quot;, 3, dual.size());
 		System.out.println(&quot;Prior = &quot; + convert.getPrior());
 		System.out.println(&quot;Primary: &quot; + c);
 		System.out.println(&quot;Dual: &quot; + dual);</diff>
      <filename>src/name/reid/mark/geovex/DualCurveTest.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,8 @@
 package name.reid.mark.geovex;
 
+import junit.framework.TestCase;
 
-public class DualLineTest {
+public class DualLineTest extends TestCase {
 
 	public void testDualLine() {
 		ROCSIConverter converter = new ROCSIConverter();
@@ -10,16 +11,16 @@ public class DualLineTest {
 		
 		// Sanity check
 		GLine expect = converter.toLine(p);		
-//		assertEquals(expect, dual);
+		assertEquals(expect, dual);
 
 		// Modifying the prior should implicitly modify the dual line.
 		converter.setPrior(0.25f);
 		expect = converter.toLine(p);
-//		assertEquals(expect, dual);
+		assertEquals(expect, dual);
 		
 		// Modifying the point should implicitly modify the dual line.
 		p.setX(1); p.setY(1);
 		expect = converter.toLine(new SpecPoint(1,1));
-//		assertEquals(expect, dual);
+		assertEquals(expect, dual);
 	}
 }</diff>
      <filename>src/name/reid/mark/geovex/DualLineTest.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,8 @@
 package name.reid.mark.geovex;
 
+import junit.framework.TestCase;
 
-public class DualSegmentTest {
+public class DualSegmentTest extends TestCase{
 
 	public void testGetStart() {
 		SpecSegment s = new SpecSegment(new SpecPoint(0,0), new SpecPoint(0.5, 0.5));
@@ -15,7 +16,7 @@ public class DualSegmentTest {
 		conv.setPrior(0.25f);
 		System.out.println(d);
 		
-//		assertTrue(true);
+		assertTrue(true);
 	}
 
 }</diff>
      <filename>src/name/reid/mark/geovex/DualSegmentTest.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,10 +1,10 @@
 package name.reid.mark.geovex;
 
+import junit.framework.TestCase;
 
-public class GLineTest {
 
-	/*
-	@Test
+public class GLineTest extends TestCase {
+
 	public void testSlope() {
 		// Line representing Y = X;
 		GLine line = new SpecLine(1, -1, 0);
@@ -47,7 +47,6 @@ public class GLineTest {
 		assertEquals(&quot;Slope of &quot; + line, -1.0, line.slope(), GLine.TOLERANCE);		
 	}
 
-	@Test
 	public void testIntercept() {
 		// Line representing Y = X;
 		GLine line = new SpecLine(1, -1, 0);
@@ -66,7 +65,6 @@ public class GLineTest {
 		assertEquals(&quot;Intercept of &quot; + line, 5.0, line.intercept(), GLine.TOLERANCE);
 	}
 
-	@Test
 	public void testIsVertical() {
 		// Line representing X = 0 is vertical;
 		GLine line = new SpecLine(1, 0, 0);
@@ -101,7 +99,6 @@ public class GLineTest {
 		assertTrue(line + &quot; is vertical&quot;, line.isVertical());
 	}
 
-	@Test
 	public void testEquals() {
 		GLine l1 = new SpecLine(1, -1, 0);
 		GLine l2 = new SpecLine(2, -2, 0);
@@ -127,5 +124,4 @@ public class GLineTest {
 		l2 = new SpecLine(2, -2.000001, 20.000001);
 		assertEquals(l1 + &quot; = &quot; + l2, l1, l2);
 	}
-	*/
 }</diff>
      <filename>src/name/reid/mark/geovex/GLineTest.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,8 @@
 package name.reid.mark.geovex;
 
+import junit.framework.TestCase;
 
-public class ROCSIConverterTest {
+public class ROCSIConverterTest extends TestCase {
 
 	private ROCSIConverter convert = new ROCSIConverter();
 	
@@ -10,7 +11,7 @@ public class ROCSIConverterTest {
 		GPoint p = new SpecPoint(0, 0);
 		GLine l = new SpecLine(0.5, 1, 0.5);
 		
-//		assertEquals(p + &quot; -&gt; &quot; + l, l, convert.toLine(p));
+		assertEquals(p + &quot; -&gt; &quot; + l, l, convert.toLine(p));
 	}
 
 	public void testToPoint() {
@@ -18,6 +19,6 @@ public class ROCSIConverterTest {
 		GLine l = new SpecLine(1, -1, 0);
 		GPoint p = new SpecPoint(0.5, 0.25);
 		
-//		assertEquals(l + &quot; -&gt; &quot; + p, p, convert.toPoint(l));
+		assertEquals(l + &quot; -&gt; &quot; + p, p, convert.toPoint(l));
 	}
 }</diff>
      <filename>src/name/reid/mark/geovex/ROCSIConverterTest.java</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>6ccec879100d24b1ecdd02b8481af0e2ad34ff6e</id>
    </parent>
  </parents>
  <author>
    <name>Mark</name>
    <email>mark@threewordslong.com</email>
  </author>
  <url>http://github.com/mreid/geovex/commit/6810c5b7229826bf17d4930898ad6214d142796a</url>
  <id>6810c5b7229826bf17d4930898ad6214d142796a</id>
  <committed-date>2008-04-21T01:23:21-07:00</committed-date>
  <authored-date>2008-04-21T01:23:21-07:00</authored-date>
  <message>Reinstated test cases. Project settings now target JDK 1.4.</message>
  <tree>4bbc3a71d93b4f0c7e07fccab6125f2d74f951dd</tree>
  <committer>
    <name>Mark</name>
    <email>mark@threewordslong.com</email>
  </committer>
</commit>
