Lines Matching refs:test_subdir
729 FilePath test_subdir = temp_dir_.path().Append(FPL("DeleteDirNonRecursive"));
730 file_util::CreateDirectory(test_subdir);
731 ASSERT_TRUE(file_util::PathExists(test_subdir));
733 FilePath file_name = test_subdir.Append(FPL("Test DeleteDir.txt"));
737 FilePath subdir_path1 = test_subdir.Append(FPL("TestSubDir1"));
741 FilePath subdir_path2 = test_subdir.Append(FPL("TestSubDir2"));
750 EXPECT_FALSE(file_util::Delete(test_subdir, false));
751 EXPECT_TRUE(file_util::PathExists(test_subdir));
759 FilePath test_subdir = temp_dir_.path().Append(FPL("DeleteDirRecursive"));
760 file_util::CreateDirectory(test_subdir);
761 ASSERT_TRUE(file_util::PathExists(test_subdir));
763 FilePath file_name = test_subdir.Append(FPL("Test DeleteDirRecursive.txt"));
767 FilePath subdir_path1 = test_subdir.Append(FPL("TestSubDir1"));
771 FilePath subdir_path2 = test_subdir.Append(FPL("TestSubDir2"));
780 EXPECT_TRUE(file_util::Delete(test_subdir, true));
783 EXPECT_FALSE(file_util::PathExists(test_subdir));