(checker)
| 167 | |
| 168 | |
| 169 | def test_read_ctu_info_line(checker): |
| 170 | assert checker.read_ctu_info_line('{') is None |
| 171 | assert checker.read_ctu_info_line('{"summary":"123"}') is None |
| 172 | assert checker.read_ctu_info_line('{"data":123}') is None |
| 173 | assert checker.read_ctu_info_line('{"summary":"123","data":123}') is not None |
| 174 | |
| 175 | def test_platform(checker): |
| 176 | test_file = os.path.join('addons','test','misra','misra-test.c') |
nothing calls this directly
no test coverage detected