tst_Q{BitArray,ContiguousCache}: check not only count(), but size(), too
Add at least a few, so size() isn't completely untested. Change-Id: I500d28f7efb30ab578808d8fefb6ea57949edc2e Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit f5205bd6a409d736942a4eed8869245cb9646d35) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
2a14dd4f47
commit
93503b0c52
@ -143,6 +143,7 @@ void tst_QBitArray::countBits()
|
|||||||
bits.setBit(i);
|
bits.setBit(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QCOMPARE(bits.size(), numBits);
|
||||||
QCOMPARE(bits.count(), numBits);
|
QCOMPARE(bits.count(), numBits);
|
||||||
QCOMPARE(bits.count(true), onBits);
|
QCOMPARE(bits.count(true), onBits);
|
||||||
QCOMPARE(bits.count(false), numBits - onBits);
|
QCOMPARE(bits.count(false), numBits - onBits);
|
||||||
|
@ -50,10 +50,12 @@ void tst_QContiguousCache::empty()
|
|||||||
{
|
{
|
||||||
QContiguousCache<int> c(10);
|
QContiguousCache<int> c(10);
|
||||||
QCOMPARE(c.capacity(), 10);
|
QCOMPARE(c.capacity(), 10);
|
||||||
|
QCOMPARE(c.size(), 0);
|
||||||
QCOMPARE(c.count(), 0);
|
QCOMPARE(c.count(), 0);
|
||||||
QVERIFY(c.isEmpty());
|
QVERIFY(c.isEmpty());
|
||||||
c.append(1);
|
c.append(1);
|
||||||
QCOMPARE(c.count(), 1);
|
QCOMPARE(c.count(), 1);
|
||||||
|
QCOMPARE(c.size(), 1);
|
||||||
QVERIFY(!c.isEmpty());
|
QVERIFY(!c.isEmpty());
|
||||||
c.clear();
|
c.clear();
|
||||||
QCOMPARE(c.capacity(), 10);
|
QCOMPARE(c.capacity(), 10);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user