MCPcopy Create free account
hub / github.com/bigdra50/unity-cli / MonkeyResult

Class MonkeyResult

unity_cli/api/uitree_monkey.py:16–23  ·  view source on GitHub ↗

Result of a monkey test run.

Source from the content-addressed store, hash-verified

14
15@dataclass
16class MonkeyResult:
17 """Result of a monkey test run."""
18
19 total_actions: int = 0
20 errors: list[dict[str, Any]] = field(default_factory=list)
21 actions: list[dict[str, Any]] = field(default_factory=list)
22 seed: int = 0
23 duration_ms: int = 0
24
25
26def _should_stop(action_count: int, count: int | None, start: float, duration: float | None) -> bool:

Callers 1

runMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected