MCPcopy Create free account
hub / github.com/FastLED/FastLED / TestResult

Class TestResult

ci/util/test_types.py:36–47  ·  view source on GitHub ↗

Structured test result

Source from the content-addressed store, hash-verified

34@typechecked
35@dataclass
36class TestResult:
37 """Structured test result"""
38
39 type: TestResultType
40 message: str
41 test_name: Optional[str] = None
42 details: Optional[dict[str, Any]] = None
43 timestamp: float = 0.0
44
45 def __post_init__(self):
46 if not self.timestamp:
47 self.timestamp = time.time()
48
49
50@typechecked

Callers 2

handle_output_lineMethod · 0.90
_parse_line_to_resultMethod · 0.90

Calls

no outgoing calls

Tested by 2

handle_output_lineMethod · 0.72
_parse_line_to_resultMethod · 0.72