| 15 | } |
| 16 | |
| 17 | void TestStringData::testAddEmptyRow() |
| 18 | { |
| 19 | QtCSV::StringData strData; |
| 20 | strData.addEmptyRow(); |
| 21 | |
| 22 | QVERIFY2(false == strData.isEmpty(), "StringData is empty with empty line"); |
| 23 | QVERIFY2(1 == strData.rowCount(), "Wrong number of rows"); |
| 24 | QVERIFY2(QStringList() == strData.rowValues(0), |
| 25 | "Wrong data for empty row"); |
| 26 | } |
| 27 | |
| 28 | void TestStringData::testAddOneRow() |
| 29 | { |
nothing calls this directly
no test coverage detected