Lines Matching refs:content
57 auto content = ReadDir(root_dir.path, [](auto _) { return true; }); in TEST() local
58 IsOk(content); in TEST()
59 ASSERT_EQ(content->size(), 3u); in TEST()
63 content = ReadDir(root_dir.path, [](auto _) { return true; }); in TEST()
64 IsOk(content); in TEST()
65 ASSERT_EQ(content->size(), 0u); in TEST()
151 std::vector<std::string> content; in TEST() local
153 content.push_back(it.path()); in TEST()
161 ASSERT_THAT(content, UnorderedElementsAreArray(expected)); in TEST()
196 std::vector<std::string> content; in TEST() local
198 content.push_back(it.path()); in TEST()
201 ASSERT_THAT(content, in TEST()
271 std::string content; in TEST() local
272 ASSERT_TRUE(android::base::ReadFileToString(tf.path, &content)); in TEST()
273 ASSERT_EQ(content, "secret"); in TEST()