| 67 | } |
| 68 | |
| 69 | void TestIndexedStringView::testCString() |
| 70 | { |
| 71 | const IndexedStringView str(nullptr); |
| 72 | QCOMPARE(str.toString(), IndexedString{nullptr}); |
| 73 | QCOMPARE(str.index(), 0u); |
| 74 | QVERIFY(str.isEmpty()); |
| 75 | } |
| 76 | |
| 77 | #include "moc_test_indexedstringview.cpp" |