Class TestEngine
- java.lang.Object
-
- org.locationtech.jtstest.testrunner.TestEngine
-
-
Constructor Summary
Constructors Constructor Description TestEngine()Creates a TestEngine.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclearParsingProblems()DategetEnd()intgetExceptionCount()intgetFailedCount()intgetParseExceptionCount()ListgetParsingProblems()intgetPassedCount()DategetStart()intgetTestCaseCount()intgetTestCount()Returns the total number of tests.List<TestRun>getTestRuns()booleanisRunning()Returns whether the TestEngine is running any TestCase's.voidrun()voidsetTestCaseIndexToRun(int testCaseIndexToRun)voidsetTestFiles(List<File> testFiles)Sets the File's that contain the tests.
-
-
-
Method Detail
-
setTestFiles
public void setTestFiles(List<File> testFiles)
Sets the File's that contain the tests.
-
setTestCaseIndexToRun
public void setTestCaseIndexToRun(int testCaseIndexToRun)
-
getExceptionCount
public int getExceptionCount()
-
getFailedCount
public int getFailedCount()
-
getPassedCount
public int getPassedCount()
-
getParseExceptionCount
public int getParseExceptionCount()
-
isRunning
public boolean isRunning()
Returns whether the TestEngine is running any TestCase's.
-
getTestCount
public int getTestCount()
Returns the total number of tests.
-
getTestCaseCount
public int getTestCaseCount()
-
getParsingProblems
public List getParsingProblems()
-
getStart
public Date getStart()
-
getEnd
public Date getEnd()
-
clearParsingProblems
public void clearParsingProblems()
-
-