Class UnifiedTestResult
java.lang.Object
io.github.mov2day.unifiedtest.collector.UnifiedTestResult
Represents the result of a single test execution.
Contains the test class name, test method name, and execution status.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionUnifiedTestResult(String className, String testName, String status) Creates a new test result with the specified details. -
Method Summary
-
Field Details
-
className
The fully qualified name of the test class -
testName
The name of the test method -
status
The test execution status (PASS, FAIL, SKIP)
-
-
Constructor Details
-
UnifiedTestResult
Creates a new test result with the specified details.- Parameters:
className- the fully qualified name of the test classtestName- the name of the test methodstatus- the test execution status
-