(self, code, expected_message)
| 5771 | ) |
| 5772 | |
| 5773 | def TestLintLogCodeOnError(self, code, expected_message): |
| 5774 | # Special TestLint which logs the input code on error. |
| 5775 | assert (result := self.PerformSingleLineLint(code)) == expected_message, ( |
| 5776 | f'For code: "{code}"\nGot: "{result}"\nExpected: "{expected_message}"' |
| 5777 | ) |
| 5778 | |
| 5779 | def testBuildStorageClass(self): |
| 5780 | qualifiers = [None, "const", "volatile"] |
no test coverage detected