public interface TestResultParser
TestResultParser. A TestResultParser is used to parse test results out of input files into one or more lists
of Events that represent a TestRun.
Per import a new instance of a TestResultParser is created.
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.util.List<Event>> |
generateEventsFromFiles(java.util.List<com.xebialabs.overthere.OverthereFile> testResultFiles)
|
java.util.List<java.util.List<Event>> generateEventsFromFiles(java.util.List<com.xebialabs.overthere.OverthereFile> testResultFiles) throws ImportException
OverthereFiles into one or more lists
of Events that represent a TestRun.
The implementation should make sure the list testRuns do not already exist in ElasticSearch. So filtering
should be applied within this implementation.testResultFiles - A list of files containing the test results.ImportException - If something went wrong during importing.