(output_event)
| 611 | json_facade.write_continue() |
| 612 | |
| 613 | def accept_message(output_event): |
| 614 | msg = output_event.body.output |
| 615 | ctx = output_event.body.category |
| 616 | |
| 617 | if ctx == "stdout": |
| 618 | msg = msg.strip() |
| 619 | return msg == "var '_a' is 2" |
| 620 | |
| 621 | messages = json_facade.mark_messages(OutputEvent, accept_message) |
| 622 | if scenario == "hitCondition": |
no outgoing calls
no test coverage detected