Skip to content

Commit

Permalink
Remove redundant naming.
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Chrzan <[email protected]>
Signed-off-by: mchrza <[email protected]>
  • Loading branch information
mchrza committed Nov 9, 2024
1 parent 7bc05f3 commit d628445
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,20 @@ public void setUp() throws Exception {
}

@Test
public void testExportSpaceToFilesStepUnfiltered() throws Exception {
public void exportUnfiltered() throws Exception {
executeExportStepAndCheckResults(SPACE_ID, null, null, null, null,
"/search");
}

@Test
public void testExportSpaceToFilesStepWithPropertyFilter() throws Exception {
public void exportWithPropertyFilter() throws Exception {
String propertiesQuery = URLEncoder.encode("p.description=\"Point\"", StandardCharsets.UTF_8);
executeExportStepAndCheckResults(SPACE_ID, null, null,
PropertiesQuery.fromString(propertiesQuery), null, "/search?" + propertiesQuery);
}

@Test
public void testExportSpaceToFilesStepWithSpatialFilter() throws Exception {
public void exportStepWithSpatialFilter() throws Exception {
SpatialFilter spatialFilter = new SpatialFilter()
.withGeometry(
new Point().withCoordinates(new PointCoordinates(8.6709594,50.102964))
Expand All @@ -77,7 +77,7 @@ public void testExportSpaceToFilesStepWithSpatialFilter() throws Exception {
}

@Test
public void testExportSpaceToFilesStepWithSpatialAndPropertyFilter() throws Exception {
public void exportWithSpatialAndPropertyFilter() throws Exception {
String propertiesQuery = URLEncoder.encode("p.description=\"Point\"", StandardCharsets.UTF_8);
String hubQuery = "spatial?lat=50.102964&lon=8.6709594&clip=true&radius=55000&"
+ propertiesQuery;
Expand Down

0 comments on commit d628445

Please sign in to comment.