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 void
clearParsingProblems()
Date
getEnd()
int
getExceptionCount()
int
getFailedCount()
int
getParseExceptionCount()
List
getParsingProblems()
int
getPassedCount()
Date
getStart()
int
getTestCaseCount()
int
getTestCount()
Returns the total number of tests.List<TestRun>
getTestRuns()
boolean
isRunning()
Returns whether the TestEngine is running any TestCase's.void
run()
void
setTestCaseIndexToRun(int testCaseIndexToRun)
void
setTestFiles(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()
-
-