Home
last modified time | relevance | path

Searched refs:testPlace (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/
H A Dtst_place.qml55 Place { id: testPlace }
313 Utils.testObjectProperties(testCase, testPlace, data);
322 signalSpy.target = testPlace;
326 testPlace.categories = categories;
327 compare(testPlace.categories.length, categories.length);
330 compare(testPlace.categories[i].categoryId, categories[i].categoryId);
331 compare(testPlace.categories[i].name, categories[i].name);
337 testPlace.categories = categories;
338 compare(testPlace.categories.length, categories.length);
341 compare(testPlace.categories[i].categoryId, categories[i].categoryId);
[all …]
H A Dtst_editorialmodel.qml56 id: testPlace
74 { tag: "place", property: "place", signal: "placeChanged", value: testPlace },
H A Dtst_imagemodel.qml56 id: testPlace
74 { tag: "place", property: "place", signal: "placeChanged", value: testPlace },
H A Dtst_reviewmodel.qml55 id: testPlace
73 { tag: "place", property: "place", signal: "placeChanged", value: testPlace },
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplace/
H A Dtst_qplace.cpp153 QPlace testPlace; in detailsFetchedTest() local
154 QVERIFY2(testPlace.detailsFetched() == false, "Wrong default value"); in detailsFetchedTest()
155 testPlace.setDetailsFetched(true); in detailsFetchedTest()
156 QVERIFY2(testPlace.detailsFetched() == true, "Wrong value returned"); in detailsFetchedTest()
157 testPlace.setDetailsFetched(false); in detailsFetchedTest()
158 QVERIFY2(testPlace.detailsFetched() == false, "Wrong value returned"); in detailsFetchedTest()
365 QPlace testPlace; in attributionTest() local
366 QVERIFY(testPlace.attribution().isEmpty()); in attributionTest()
367 testPlace.setAttribution(QStringLiteral("attribution")); in attributionTest()
368 QCOMPARE(testPlace.attribution(), QStringLiteral("attribution")); in attributionTest()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qmlinterface/
H A Dtst_qmlinterface.cpp64 void testPlace();
325 void tst_qmlinterface::testPlace() in testPlace() function in tst_qmlinterface