Home | History | Annotate | Download | only in aidl

Lines Matching refs:absolute_path

29   string absolute_path;
30 EXPECT_FALSE(IoDelegate::GetAbsolutePath("", &absolute_path));
31 EXPECT_TRUE(absolute_path.empty());
35 string absolute_path;
36 EXPECT_TRUE(IoDelegate::GetAbsolutePath("foo", &absolute_path));
37 ASSERT_FALSE(absolute_path.empty());
38 // Should find our desired file at the end of |absolute_path|
40 EXPECT_TRUE(absolute_path.rfind("/foo") == absolute_path.length() - 4);
42 EXPECT_EQ(absolute_path[0], '/');