MCPcopy Create free account
hub / github.com/KDE/kdevelop / testNoFilterStrategy

Method testNoFilterStrategy

kdevplatform/outputview/tests/test_filteringstrategy.cpp:101–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99}
100
101void 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
112void TestFilteringStrategy::testCompilerFilterStrategy_data()
113{

Callers

nothing calls this directly

Calls 2

errorInLineMethod · 0.80
actionInLineMethod · 0.80

Tested by

no test coverage detected