| 6 | TestStringData::TestStringData() {} |
| 7 | |
| 8 | void TestStringData::testCreation() |
| 9 | { |
| 10 | QtCSV::StringData strData; |
| 11 | |
| 12 | QVERIFY2(strData.isEmpty(), "Empty StringData is not empty"); |
| 13 | QVERIFY2(strData.rowCount() == 0, |
| 14 | "Empty StringData have too many rows"); |
| 15 | } |
| 16 | |
| 17 | void TestStringData::testAddEmptyRow() |
| 18 | { |