Enable/disable testing of small and large strip sizes. Args: small: Enable small strip testing (default: True) large: Enable large strip testing (default: False) Returns: Response dict with testSmallStrips, testLargeStrips, testCases
(
self, small: bool = True, large: bool = False
)
| 297 | return self.send_rpc("setLaneRange", [min_lanes, max_lanes]) |
| 298 | |
| 299 | def set_strip_sizes_enabled( |
| 300 | self, small: bool = True, large: bool = False |
| 301 | ) -> dict[str, Any]: |
| 302 | """Enable/disable testing of small and large strip sizes. |
| 303 | |
| 304 | Args: |
| 305 | small: Enable small strip testing (default: True) |
| 306 | large: Enable large strip testing (default: False) |
| 307 | |
| 308 | Returns: |
| 309 | Response dict with testSmallStrips, testLargeStrips, testCases |
| 310 | """ |
| 311 | return self.send_rpc("setStripSizes", [{"small": small, "large": large}]) |
| 312 | |
| 313 | def run_test(self) -> TestResult: |
| 314 | """Run configured test and return results. |
no test coverage detected