Uses of Interface
org.locationtech.jtstest.testrunner.Result
-
Packages that use Result Package Description org.locationtech.jtstest.geomop org.locationtech.jtstest.testbuilder.model 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(java.lang.String opName, Geometry geometry, java.lang.Object[] args)
Invokes the named operationResult
GeometryFunctionOperation. invoke(java.lang.String opName, Geometry geometry, java.lang.Object[] args)
private Result
GeometryFunctionOperation. invoke(GeometryFunction func, Geometry geometry, java.lang.Object[] args)
Result
GeometryMethodOperation. invoke(java.lang.String opName, Geometry geometry, java.lang.Object[] args)
Result
GeometryOperation. invoke(java.lang.String opName, Geometry geometry, java.lang.Object[] args)
Invokes an operation on aGeometry
.Result
LoggingGeometryOperation. invoke(java.lang.String opName, Geometry geometry, java.lang.Object[] args)
Result
OverlayValidatedGeometryOperation. invoke(java.lang.String opName, Geometry geometry, java.lang.Object[] args)
Invokes the named operationResult
PreparedGeometryOperation. invoke(java.lang.String opName, Geometry geometry, java.lang.Object[] args)
Invokes the named operationResult
TeeGeometryOperation. invoke(java.lang.String opName, Geometry geometry, java.lang.Object[] args)
Invokes the named operationprivate Result
BufferValidatedGeometryOperation. invokeBufferOpValidated(Geometry geometry, java.lang.Object[] args)
private Result
GeometryMethodOperation. invokeMethod(java.lang.reflect.Method method, Geometry geometry, java.lang.Object[] args)
private Result
PreparedGeometryOperation. invokePreparedOp(java.lang.String opName, Geometry geometry, java.lang.Object[] args)
Result
OverlayValidatedGeometryOperation. invokeValidatedOverlayOp(int opCode, Geometry g0, java.lang.Object[] args)
Invokes an overlay op, optionally using snapping, and optionally validating the result. -
Uses of Result in org.locationtech.jtstest.testbuilder.model
Methods in org.locationtech.jtstest.testbuilder.model that return Result Modifier and Type Method Description private Result
TestRunnerTestCaseAdapter. getDefaultResult(java.lang.String opName)
-
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
Fields in org.locationtech.jtstest.testrunner declared as Result Modifier and Type Field Description private Result
Test. actualResult
private Result
Test. expectedResult
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()
private Result
TestReader. toResult(java.lang.String value, java.lang.String name, TestRun testRun)
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, java.lang.String opName, java.lang.Object[] args, Result actualResult, Result expectedResult, double tolerance)
Tests whether the two results are equal within the given tolerance.boolean
EqualityResultMatcher. isMatch(Geometry geom, java.lang.String opName, java.lang.Object[] args, Result actualResult, Result expectedResult, double tolerance)
Tests whether the two results are equal within the given tolerance.boolean
NullResultMatcher. isMatch(Geometry geom, java.lang.String opName, java.lang.Object[] args, Result actualResult, Result expectedResult, double tolerance)
Always reports a match.boolean
ResultMatcher. isMatch(Geometry geom, java.lang.String opName, java.lang.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, java.lang.String description, java.lang.String operation, java.lang.String geometryIndex, java.util.List arguments, Result expectedResult, double tolerance)
Creates a Test with the given description.
-