Searched refs:assertLngLatAlt (Results 1 – 4 of 4) sorted by relevance
/external/geojson-jackson/src/test/java/org/geojson/jackson/ |
D | PointTest.java | 19 …public static void assertLngLatAlt(double expectedLongitude, double expectedLatitude, double expec… in assertLngLatAlt() method in PointTest 21 assertLngLatAlt(expectedLongitude, expectedLatitude, expectedAltitude, new double[0], point); in assertLngLatAlt() 24 …public static void assertLngLatAlt(double expectedLongitude, double expectedLatitude, double expec… in assertLngLatAlt() method in PointTest 50 assertLngLatAlt(100, 5, Double.NaN, point.getCoordinates()); in itShouldDeserializeAPoint() 58 assertLngLatAlt(100, 5, 123, point.getCoordinates()); in itShouldDeserializeAPointWithAltitude() 73 assertLngLatAlt(100, 5, 123, new double[] {456d, 789.2}, point.getCoordinates()); in itShouldDeserializeAPointWithAdditionalAttributes()
|
D | MultiPointTest.java | 31 PointTest.assertLngLatAlt(100, 0, Double.NaN, coordinates.get(0)); in itShouldDeserializeMultiPoint() 32 PointTest.assertLngLatAlt(101, 1, Double.NaN, coordinates.get(1)); in itShouldDeserializeMultiPoint()
|
D | LineStringTest.java | 31 PointTest.assertLngLatAlt(100, 0, Double.NaN, coordinates.get(0)); in itShouldDeserializeLineString() 32 PointTest.assertLngLatAlt(101, 1, Double.NaN, coordinates.get(1)); in itShouldDeserializeLineString()
|
D | PolygonTest.java | 71 …PointTest.assertLngLatAlt(expected.getLongitude(), expected.getLatitude(), expected.getAltitude(),… in assertListEquals()
|