Home | History | Annotate | Download | only in base

Lines Matching full:test_root

1531   FilePath test_root =
1535 test_root.Append(FILE_PATH_LITERAL("dir\\tree\\likely\\doesnt\\exist\\"));
1538 test_root.Append(FILE_PATH_LITERAL("dir/tree/likely/doesnt/exist/"));
1554 EXPECT_TRUE(file_util::Delete(test_root, true));
1555 EXPECT_FALSE(file_util::PathExists(test_root));
1563 FilePath top_level = test_root;
1587 FilePath test_root =
1589 EXPECT_FALSE(file_util::PathExists(test_root));
1590 EXPECT_TRUE(file_util::CreateDirectory(test_root));
1591 EXPECT_TRUE(file_util::PathExists(test_root));
1592 EXPECT_TRUE(file_util::DirectoryExists(test_root));
1596 test_root.Append(FILE_PATH_LITERAL("foobar.txt"));
1603 EXPECT_TRUE(file_util::Delete(test_root, true));