| 23 | Q_OBJECT; |
| 24 | private Q_SLOTS: |
| 25 | void initTestCase() |
| 26 | { |
| 27 | Diff3LineList diffList; |
| 28 | Diff3Line entry; |
| 29 | |
| 30 | QVERIFY(diffList.empty()); |
| 31 | QVERIFY(!entry.isEqualAB()); |
| 32 | QVERIFY(!entry.isEqualBC()); |
| 33 | QVERIFY(!entry.isEqualAC()); |
| 34 | QVERIFY(!entry.isWhiteLine(e_SrcSelector::A)); |
| 35 | QVERIFY(!entry.isWhiteLine(e_SrcSelector::B)); |
| 36 | QVERIFY(!entry.isWhiteLine(e_SrcSelector::C)); |
| 37 | } |
| 38 | |
| 39 | void calcDiffTest() |
| 40 | { |
nothing calls this directly
no test coverage detected