Home
last modified time | relevance | path

Searched refs:assertLngLatAlt (Results 1 – 4 of 4) sorted by relevance

/external/geojson-jackson/src/test/java/org/geojson/jackson/
DPointTest.java19 …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()
DMultiPointTest.java31 PointTest.assertLngLatAlt(100, 0, Double.NaN, coordinates.get(0)); in itShouldDeserializeMultiPoint()
32 PointTest.assertLngLatAlt(101, 1, Double.NaN, coordinates.get(1)); in itShouldDeserializeMultiPoint()
DLineStringTest.java31 PointTest.assertLngLatAlt(100, 0, Double.NaN, coordinates.get(0)); in itShouldDeserializeLineString()
32 PointTest.assertLngLatAlt(101, 1, Double.NaN, coordinates.get(1)); in itShouldDeserializeLineString()
DPolygonTest.java71 …PointTest.assertLngLatAlt(expected.getLongitude(), expected.getLatitude(), expected.getAltitude(),… in assertListEquals()