
import junit.framework.TestCase;

import org.apache.abdera.ext.geo.Coordinates;
import org.apache.abdera.ext.geo.Polygon;

public class GeoExtRule179Test extends TestCase {

	public void testRule179() {
		Coordinates coords = new Coordinates();
		coords.add(1, -179);
		coords.add(1, 179);
		coords.add(-1, 179);
		coords.add(-1, -179);
		Polygon poly = new Polygon(coords);
	}

}
