(self, spec)
| 1314 | method(spec["arguments"]) |
| 1315 | |
| 1316 | def run_operations(self, spec): |
| 1317 | for op in spec: |
| 1318 | if op["object"] == "testRunner": |
| 1319 | self.run_special_operation(op) |
| 1320 | else: |
| 1321 | self.run_entity_operation(op) |
| 1322 | |
| 1323 | def run_operations_and_throw(self, spec): |
| 1324 | for op in spec: |
no test coverage detected