use of org.apache.jena.geosparql.implementation.DimensionInfo in project jena by apache.
the class EhDisjointFFTest method testPermittedTopology_polygon_linestring.
/**
* Test of permittedTopology method, of class EhDisjointFF.
*/
@Test
public void testPermittedTopology_polygon_linestring() {
DimensionInfo sourceDimensionInfo = DimensionInfo.XY_POLYGON;
DimensionInfo targetDimensionInfo = DimensionInfo.XY_LINESTRING;
EhDisjointFF instance = new EhDisjointFF();
boolean expResult = true;
boolean result = instance.permittedTopology(sourceDimensionInfo, targetDimensionInfo);
assertEquals(expResult, result);
}
use of org.apache.jena.geosparql.implementation.DimensionInfo in project jena by apache.
the class EhDisjointFFTest method testPermittedTopology_point_linestring.
/**
* Test of permittedTopology method, of class EhDisjointFF.
*/
@Test
public void testPermittedTopology_point_linestring() {
DimensionInfo sourceDimensionInfo = DimensionInfo.XY_POINT;
DimensionInfo targetDimensionInfo = DimensionInfo.XY_LINESTRING;
EhDisjointFF instance = new EhDisjointFF();
boolean expResult = true;
boolean result = instance.permittedTopology(sourceDimensionInfo, targetDimensionInfo);
assertEquals(expResult, result);
}
use of org.apache.jena.geosparql.implementation.DimensionInfo in project jena by apache.
the class EhDisjointFFTest method testPermittedTopology_polygon_polygon.
/**
* Test of permittedTopology method, of class EhDisjointFF.
*/
@Test
public void testPermittedTopology_polygon_polygon() {
DimensionInfo sourceDimensionInfo = DimensionInfo.XY_POLYGON;
DimensionInfo targetDimensionInfo = DimensionInfo.XY_POLYGON;
EhDisjointFF instance = new EhDisjointFF();
boolean expResult = true;
boolean result = instance.permittedTopology(sourceDimensionInfo, targetDimensionInfo);
assertEquals(expResult, result);
}
use of org.apache.jena.geosparql.implementation.DimensionInfo in project jena by apache.
the class EhDisjointFFTest method testPermittedTopology_linestring_linestring.
/**
* Test of permittedTopology method, of class EhDisjointFF.
*/
@Test
public void testPermittedTopology_linestring_linestring() {
DimensionInfo sourceDimensionInfo = DimensionInfo.XY_LINESTRING;
DimensionInfo targetDimensionInfo = DimensionInfo.XY_LINESTRING;
EhDisjointFF instance = new EhDisjointFF();
boolean expResult = true;
boolean result = instance.permittedTopology(sourceDimensionInfo, targetDimensionInfo);
assertEquals(expResult, result);
}
use of org.apache.jena.geosparql.implementation.DimensionInfo in project jena by apache.
the class EhDisjointFFTest method testPermittedTopology_linestring_point.
/**
* Test of permittedTopology method, of class EhDisjointFF.
*/
@Test
public void testPermittedTopology_linestring_point() {
DimensionInfo sourceDimensionInfo = DimensionInfo.XY_LINESTRING;
DimensionInfo targetDimensionInfo = DimensionInfo.XY_POINT;
EhDisjointFF instance = new EhDisjointFF();
boolean expResult = true;
boolean result = instance.permittedTopology(sourceDimensionInfo, targetDimensionInfo);
assertEquals(expResult, result);
}
Aggregations