Searched defs:non_existent (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/base/files/
H A Dfile_util_unittest.cc626 FilePath non_existent = temp_dir_.path().AppendASCII("bogus_file_dne.foobar"); local
627 ASSERT_FALSE(PathExists(non_existent));
629 EXPECT_TRUE(DeleteFile(non_existent, false));
630 ASSERT_FALSE(PathExists(non_existent));
631 EXPECT_TRUE(DeleteFile(non_existent, true));
632 ASSERT_FALSE(PathExists(non_existent));
636 FilePath non_existent = temp_dir_.path().AppendASCII("bogus_topdir"); local
637 non_existent = non_existent.AppendASCII("bogus_subdir");
638 ASSERT_FALSE(PathExists(non_existent));
688 FilePath non_existent = temp_dir_.path().Append(FPL("Test DeleteFile 3.txt")); local
[all...]

Completed in 172 milliseconds