Lines Matching refs:test_subdir
1380 FilePath test_subdir = in TEST_F() local
1382 CreateDirectory(test_subdir); in TEST_F()
1383 ASSERT_TRUE(PathExists(test_subdir)); in TEST_F()
1385 FilePath file_name = test_subdir.Append(FPL("Test DeleteDir.txt")); in TEST_F()
1389 FilePath subdir_path1 = test_subdir.Append(FPL("TestSubDir1")); in TEST_F()
1393 FilePath subdir_path2 = test_subdir.Append(FPL("TestSubDir2")); in TEST_F()
1402 EXPECT_FALSE(DeleteFile(test_subdir, false)); in TEST_F()
1403 EXPECT_TRUE(PathExists(test_subdir)); in TEST_F()
1411 FilePath test_subdir = temp_dir_.GetPath().Append(FPL("DeleteDirRecursive")); in TEST_F() local
1412 CreateDirectory(test_subdir); in TEST_F()
1413 ASSERT_TRUE(PathExists(test_subdir)); in TEST_F()
1415 FilePath file_name = test_subdir.Append(FPL("Test DeleteDirRecursive.txt")); in TEST_F()
1419 FilePath subdir_path1 = test_subdir.Append(FPL("TestSubDir1")); in TEST_F()
1423 FilePath subdir_path2 = test_subdir.Append(FPL("TestSubDir2")); in TEST_F()
1432 EXPECT_TRUE(DeleteFile(test_subdir, true)); in TEST_F()
1435 EXPECT_FALSE(PathExists(test_subdir)); in TEST_F()
1441 FilePath test_subdir = temp_dir_.GetPath().Append(FPL("DeleteWithOpenFile")); in TEST_F() local
1442 CreateDirectory(test_subdir); in TEST_F()
1443 ASSERT_TRUE(PathExists(test_subdir)); in TEST_F()
1445 FilePath file_name1 = test_subdir.Append(FPL("Undeletebable File1.txt")); in TEST_F()
1450 FilePath file_name2 = test_subdir.Append(FPL("Deleteable File2.txt")); in TEST_F()
1454 FilePath file_name3 = test_subdir.Append(FPL("Undeletebable File3.txt")); in TEST_F()
1477 DeleteFile(test_subdir, true); in TEST_F()