| 1112 | } |
| 1113 | |
| 1114 | void suppressionsLine0() const { |
| 1115 | SuppressionList suppressions; |
| 1116 | ASSERT_EQUALS("", suppressions.addSuppressionLine("syntaxError:*:0")); |
| 1117 | ASSERT_EQUALS(true, suppressions.isSuppressed(errorMessage("syntaxError", "test.cpp", 0))); |
| 1118 | } |
| 1119 | |
| 1120 | void suppressionsFileComment() const { |
| 1121 | std::istringstream file1("# comment\n" |
nothing calls this directly
no test coverage detected