(state)
| 511 | for i, context_test in enumerate(context_tests or []): |
| 512 | # partial the substate check, because the function uses two prepended messages |
| 513 | def check_context(state): |
| 514 | return check_part_index( |
| 515 | state, |
| 516 | "context", |
| 517 | i, |
| 518 | "%s context" % get_ord(i + 1), |
| 519 | missing_msg=MSG_NUM_CTXT2, |
| 520 | ) |
| 521 | |
| 522 | check_context(child) # test exist |
| 523 |
no test coverage detected