Uses of Interface
org.locationtech.jtstest.testrunner.Result
-
Packages that use Result Package Description org.locationtech.jtstest.geomop org.locationtech.jtstest.testrunner -
-
Uses of Result in org.locationtech.jtstest.geomop
Methods in org.locationtech.jtstest.geomop that return Result Modifier and Type Method Description Result
BufferValidatedGeometryOperation. invoke(String opName, Geometry geometry, Object[] args)
Invokes the named operationResult
GeometryFunctionOperation. invoke(String opName, Geometry geometry, Object[] args)
Result
GeometryMethodOperation. invoke(String opName, Geometry geometry, Object[] args)
Result
GeometryOperation. invoke(String opName, Geometry geometry, Object[] args)
Invokes an operation on aGeometry
.Result
LoggingGeometryOperation. invoke(String opName, Geometry geometry, Object[] args)
Result
OverlayValidatedGeometryOperation. invoke(String opName, Geometry geometry, Object[] args)
Invokes the named operationResult
PreparedGeometryOperation. invoke(String opName, Geometry geometry, Object[] args)
Invokes the named operationResult
TeeGeometryOperation. invoke(String opName, Geometry geometry, Object[] args)
Invokes the named operationResult
OverlayValidatedGeometryOperation. invokeValidatedOverlayOp(int opCode, Geometry g0, Object[] args)
Invokes an overlay op, optionally using snapping, and optionally validating the result. -
Uses of Result in org.locationtech.jtstest.testrunner
Classes in org.locationtech.jtstest.testrunner that implement Result Modifier and Type Class Description class
BooleanResult
class
DoubleResult
class
GeometryResult
class
IntegerResult
Methods in org.locationtech.jtstest.testrunner that return Result Modifier and Type Method Description Result
Test. getActualResult()
Computes the actual result and caches the result value.Result
Test. getExpectedResult()
Methods in org.locationtech.jtstest.testrunner with parameters of type Result Modifier and Type Method Description boolean
BooleanResult. equals(Result other, double tolerance)
boolean
DoubleResult. equals(Result other, double tolerance)
boolean
GeometryResult. equals(Result other, double tolerance)
boolean
IntegerResult. equals(Result other, double tolerance)
boolean
Result. equals(Result other, double tolerance)
boolean
BufferResultMatcher. isMatch(Geometry geom, String opName, Object[] args, Result actualResult, Result expectedResult, double tolerance)
Tests whether the two results are equal within the given tolerance.boolean
EqualityResultMatcher. isMatch(Geometry geom, String opName, Object[] args, Result actualResult, Result expectedResult, double tolerance)
Tests whether the two results are equal within the given tolerance.boolean
NullResultMatcher. isMatch(Geometry geom, String opName, Object[] args, Result actualResult, Result expectedResult, double tolerance)
Always reports a match.boolean
ResultMatcher. isMatch(Geometry geom, String opName, Object[] args, Result actualResult, Result expectedResult, double tolerance)
Tests whether the actual and expected results match well enough for the test to be considered as passed.void
Test. setResult(Result result)
Constructors in org.locationtech.jtstest.testrunner with parameters of type Result Constructor Description Test(TestCase testCase, int testIndex, String description, String operation, String geometryIndex, List<String> arguments, Result expectedResult, double tolerance)
Creates a Test with the given description.
-