Searched refs:outDocuments (Results 1 – 3 of 3) sorted by relevance
/cts/hostsidetests/appsearch/test-apps/AppSearchHostTestHelperB/src/android/appsearch/app/b/ |
D | AppSearchDeviceTest.java | 57 List<GenericDocument> outDocuments = convertSearchResultsToDocuments( in testGlobalGetDocuments_exist() local 61 assertThat(outDocuments).containsExactly(DOCUMENT); in testGlobalGetDocuments_exist() 66 List<GenericDocument> outDocuments = convertSearchResultsToDocuments( in testGlobalGetDocuments_nonexist() local 70 assertThat(outDocuments).isEmpty(); in testGlobalGetDocuments_nonexist()
|
/cts/hostsidetests/appsearch/test-apps/AppSearchHostTestHelperA/src/android/appsearch/app/a/ |
D | AppSearchDeviceTest.java | 113 List<GenericDocument> outDocuments = doGet(mDb, NAMESPACE, ID); in testGetDocuments_exist() local 114 assertThat(outDocuments).containsExactly(DOCUMENT); in testGetDocuments_exist()
|
/cts/tests/appsearch/src/com/android/cts/appsearch/external/app/ |
D | AppSearchSessionCtsTestBase.java | 542 List<GenericDocument> outDocuments = doGet(mDb1, "namespace", "email1"); in testRemoveSchema() local 543 assertThat(outDocuments).hasSize(1); in testRemoveSchema() 544 AppSearchEmail outEmail = new AppSearchEmail(outDocuments.get(0)); in testRemoveSchema() 611 List<GenericDocument> outDocuments = doGet(mDb1, "namespace", "email1"); in testRemoveSchema_twoDatabases() local 612 assertThat(outDocuments).hasSize(1); in testRemoveSchema_twoDatabases() 613 AppSearchEmail outEmail = new AppSearchEmail(outDocuments.get(0)); in testRemoveSchema_twoDatabases() 623 outDocuments = doGet(mDb2, "namespace", "email2"); in testRemoveSchema_twoDatabases() 624 assertThat(outDocuments).hasSize(1); in testRemoveSchema_twoDatabases() 625 outEmail = new AppSearchEmail(outDocuments.get(0)); in testRemoveSchema_twoDatabases() 670 outDocuments = doGet(mDb2, "namespace", "email2"); in testRemoveSchema_twoDatabases() [all …]
|