Test Case Report¤
TestCaseReport
dataclass
¤
TestCaseReport(
node_id: str,
outcome: Outcome,
duration: float,
setup: TestCaseSetup,
teardown: TestCaseTeardown,
finished: TestCaseFinished,
call: Optional[TestCaseCall] = None,
)
Report for a single test case.
call
class-attribute
instance-attribute
¤
call: Optional[TestCaseCall] = None
Call step of the test case (optional).
duration
instance-attribute
¤
duration: float
Duration of the test case in seconds (including setup and teardown).
finished
instance-attribute
¤
finished: TestCaseFinished
View of the test case after it has finished.