Class TestExecutedSubResult
- java.lang.Object
-
- de.gebit.integrity.runner.results.Result
-
- de.gebit.integrity.runner.results.FixtureExecutionResult
-
- de.gebit.integrity.runner.results.test.TestSubResult
-
- de.gebit.integrity.runner.results.test.TestExecutedSubResult
-
public class TestExecutedSubResult extends TestSubResult
A sub-result of an executed test.- Author:
- Rene Schneider - initial API and implementation
-
-
Constructor Summary
Constructors Constructor Description TestExecutedSubResult(Map<String,TestComparisonResult> someComparisonResults, FixtureWrapper<?> aFixtureInstance, String aFixtureMethod, Long anExecutionTime)Creates a new instance.
-
Method Summary
-
Methods inherited from class de.gebit.integrity.runner.results.test.TestSubResult
getComparisonResults, isUndetermined, wereAllComparisonsSuccessful
-
Methods inherited from class de.gebit.integrity.runner.results.FixtureExecutionResult
getExtendedResults, getFixtureInstance, getFixtureMethod
-
Methods inherited from class de.gebit.integrity.runner.results.Result
getExecutionTime
-
-
-
-
Constructor Detail
-
TestExecutedSubResult
public TestExecutedSubResult(Map<String,TestComparisonResult> someComparisonResults, FixtureWrapper<?> aFixtureInstance, String aFixtureMethod, Long anExecutionTime)
Creates a new instance.- Parameters:
someComparisonResults- Map of named result name to the respective comparison resultaFixtureInstance- The fixture instance (wrapped) - may be null if no fixtures are called in the current phase (for example during the dry run).aFixtureMethod- the method that was executedanExecutionTime- The time taken to execute the test method
-
-