Home
last modified time | relevance | path

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

/src/contrib/googletest/googletest/test/
H A Dgoogletest-filepath-test.cc366 EXPECT_TRUE(FilePath(current_drive).DirectoryExists()); in TEST()
368 EXPECT_TRUE(FilePath("/").DirectoryExists()); in TEST()
383 EXPECT_FALSE(FilePath(non_drive).DirectoryExists()); in TEST()
393 EXPECT_FALSE(FilePath("").DirectoryExists()); in TEST()
401 EXPECT_TRUE(FilePath(".").DirectoryExists()); in TEST()
402 EXPECT_TRUE(FilePath(".\\").DirectoryExists()); in TEST()
406 EXPECT_TRUE(FilePath(".").DirectoryExists()); in TEST()
407 EXPECT_TRUE(FilePath("./").DirectoryExists()); in TEST()
527 EXPECT_FALSE(testdata_path_.DirectoryExists()) << testdata_path_.string(); in TEST_F()
529 EXPECT_TRUE(testdata_path_.DirectoryExists()); in TEST_F()
[all …]
/src/contrib/googletest/googletest/src/
H A Dgtest-filepath.cc265 bool FilePath::DirectoryExists() const { in DirectoryExists() function in testing::internal::FilePath
339 if (pathname_.empty() || this->DirectoryExists()) { in CreateDirectoriesRecursively()
369 return this->DirectoryExists(); // An error is OK if the directory exists. in CreateFolder()
/src/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h171 bool DirectoryExists() const;