Remove duplicated tests
tst_QtJson::testValueSimple() tested bool and double values twice Change-Id: Ie6e58aab729c6ee20cb53d3b85746a05f7571f5e Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@digia.com>
This commit is contained in:
parent
10ad84d223
commit
fe2ce05d23
@ -200,20 +200,6 @@ void tst_QtJson::testValueSimple()
|
||||
QCOMPARE(value.toBool(), false);
|
||||
QCOMPARE(value.toObject(), QJsonObject());
|
||||
QCOMPARE(value.toArray(), QJsonArray());
|
||||
|
||||
value = true;
|
||||
QCOMPARE(value.toDouble(), 0.);
|
||||
QCOMPARE(value.toString(), QString());
|
||||
QCOMPARE(value.toBool(), true);
|
||||
QCOMPARE(value.toObject(), QJsonObject());
|
||||
QCOMPARE(value.toArray(), QJsonArray());
|
||||
|
||||
value = 999.;
|
||||
QCOMPARE(value.toDouble(), 999.);
|
||||
QCOMPARE(value.toString(), QString());
|
||||
QCOMPARE(value.toBool(), false);
|
||||
QCOMPARE(value.toObject(), QJsonObject());
|
||||
QCOMPARE(value.toArray(), QJsonArray());
|
||||
}
|
||||
|
||||
void tst_QtJson::testNumbers()
|
||||
|
Loading…
Reference in New Issue
Block a user