summaryrefslogtreecommitdiff
path: root/branches/sm-unittesting/src/org/reprap/geometry/polygons/PolygonTest.java
blob: e171bace3a22dc6135ecd12fe7b4b70a137475ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.reprap.geometry.polygons;

import org.testng.Assert;

public class PolygonTest {
		
	/**
	 * @testng.test groups = "geometry,all,all-offline"
	 */
	public void testPoint() {
		Rr2Point testPoint = new Rr2Point(10, 5);
		Assert.assertEquals(testPoint.x(), 10.0, 0.0, "x");		
		Assert.assertEquals(testPoint.y(), 5.0, 0.0, "y");
		
		Rr2Point negPoint = testPoint.neg();
		Assert.assertEquals(negPoint.x(), -10.0, 0.0, "neg x");
		Assert.assertEquals(negPoint.y(), -5.0, 0.0, "neg x");
	}	
	
}