Searched refs:isDuplicateData (Results 1 – 1 of 1) sorted by relevance
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_backup_test/src/ |
H A D | medialibrary_backup_test.cpp | 370 bool isDuplicateData = restoreService->photosRestore_.IsDuplicateData(dataPath); variable 371 …_INFO_LOG("check %{public}s: %{public}d", dataPath.c_str(), static_cast<int32_t>(isDuplicateData)); 372 EXPECT_EQ(isDuplicateData, false); // first time used, not duplicate 373 isDuplicateData = restoreService->photosRestore_.IsDuplicateData(dataPath); 374 …OG("double check %{public}s: %{public}d", dataPath.c_str(), static_cast<int32_t>(isDuplicateData)); 375 EXPECT_EQ(isDuplicateData, false); // second time used, duplicate 377 isDuplicateData = restoreService->photosRestore_.IsDuplicateData(dataPath); 378 …_INFO_LOG("check %{public}s: %{public}d", dataPath.c_str(), static_cast<int32_t>(isDuplicateData)); 379 EXPECT_EQ(isDuplicateData, false); // not exist in map, not duplicate
|