| 99 | } |
| 100 | |
| 101 | void TestFilteringStrategy::testNoFilterStrategy() |
| 102 | { |
| 103 | QFETCH(QString, line); |
| 104 | QFETCH(FilteredItem::FilteredOutputItemType, expected); |
| 105 | NoFilterStrategy testee; |
| 106 | FilteredItem item1 = testee.errorInLine(line); |
| 107 | QCOMPARE(item1.type, expected); |
| 108 | item1 = testee.actionInLine(line); |
| 109 | QCOMPARE(item1.type, expected); |
| 110 | } |
| 111 | |
| 112 | void TestFilteringStrategy::testCompilerFilterStrategy_data() |
| 113 | { |
nothing calls this directly
no test coverage detected