Home
last modified time | relevance | path

Searched refs:DirectoryExists (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/third_party/googletest/googletest/test/
Dgtest-filepath_test.cc376 EXPECT_TRUE(FilePath(current_drive).DirectoryExists()); in TEST()
378 EXPECT_TRUE(FilePath("/").DirectoryExists()); in TEST()
393 EXPECT_FALSE(FilePath(non_drive).DirectoryExists()); in TEST()
403 EXPECT_FALSE(FilePath("").DirectoryExists()); in TEST()
411 EXPECT_TRUE(FilePath(".").DirectoryExists()); in TEST()
412 EXPECT_TRUE(FilePath(".\\").DirectoryExists()); in TEST()
416 EXPECT_TRUE(FilePath(".").DirectoryExists()); in TEST()
417 EXPECT_TRUE(FilePath("./").DirectoryExists()); in TEST()
551 EXPECT_FALSE(testdata_path_.DirectoryExists()) << testdata_path_.string(); in TEST_F()
553 EXPECT_TRUE(testdata_path_.DirectoryExists()); in TEST_F()
[all …]
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-filepath.cc218 bool FilePath::DirectoryExists() const { in DirectoryExists() function in testing::internal::FilePath
308 if (pathname_.length() == 0 || this->DirectoryExists()) { in CreateDirectoriesRecursively()
333 return this->DirectoryExists(); // An error is OK if the directory exists. in CreateFolder()
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
Dgtest-filepath.h158 bool DirectoryExists() const;