()
| 151 | |
| 152 | |
| 153 | def test_all_basic_tests_completeness(): |
| 154 | num_found = 0 |
| 155 | for key, value in VARS_BEFORE_ALL_BASIC_TESTS.items(): |
| 156 | if not key.startswith("test_"): |
| 157 | continue |
| 158 | assert value in ALL_BASIC_TESTS |
| 159 | num_found += 1 |
| 160 | assert len(ALL_BASIC_TESTS) == num_found |
| 161 | |
| 162 | |
| 163 | def _intentional_deadlock(): |