(self, code, expected_message)
| 240 | |
| 241 | # Perform lint and make sure one of the errors is what we want |
| 242 | def TestLintContains(self, code, expected_message): |
| 243 | assert expected_message in self.PerformSingleLineLint(code) |
| 244 | |
| 245 | def TestLintNotContains(self, code, expected_message): |
| 246 | assert expected_message not in self.PerformSingleLineLint(code) |
no test coverage detected