forked from heremaps/xyz-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test xptn SpatialFilter with invalid geometry
Signed-off-by: qGYdXbY2 <[email protected]>
- Loading branch information
Showing
2 changed files
with
25 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
xyz-hub-test/src/test/java/com/here/xyz/hub/rest/jobs/JobDatasetsIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.here.xyz.hub.rest.jobs; | ||
|
||
import static org.junit.Assert.assertThrows; | ||
|
||
import org.junit.Test; | ||
|
||
import com.here.xyz.jobs.datasets.filters.SpatialFilter; | ||
import com.here.xyz.models.geojson.coordinates.PointCoordinates; | ||
import com.here.xyz.models.geojson.exceptions.InvalidGeometryException; | ||
import com.here.xyz.models.geojson.implementation.Point; | ||
|
||
public class JobDatasetsIT { | ||
|
||
|
||
@Test | ||
public void createInvalidSpatialFilter() { | ||
|
||
assertThrows(InvalidGeometryException.class, | ||
() -> new SpatialFilter().withGeometry(new Point().withCoordinates(new PointCoordinates(399,399)))); | ||
|
||
} | ||
|
||
|
||
} |