Lines Matching refs:Verify
64 std::unique_ptr<xml::XmlResource> Verify(StringPiece str) { in Verify() function
80 EXPECT_THAT(Verify("<other-tag />"), IsNull()); in TEST_F()
81 EXPECT_THAT(Verify("<ns:manifest xmlns:ns=\"com\" />"), IsNull()); in TEST_F()
82 EXPECT_THAT(Verify("<manifest package=\"android\"></manifest>"), NotNull()); in TEST_F()
86 EXPECT_THAT(Verify("<manifest package=\"android\" />"), NotNull()); in TEST_F()
87 EXPECT_THAT(Verify("<manifest package=\"com.android\" />"), NotNull()); in TEST_F()
88 EXPECT_THAT(Verify("<manifest package=\"com.android.google\" />"), NotNull()); in TEST_F()
89 EXPECT_THAT(Verify("<manifest package=\"com.android.google.Class$1\" />"), IsNull()); in TEST_F()
90 EXPECT_THAT(Verify("<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\" " in TEST_F()
93 EXPECT_THAT(Verify("<manifest package=\"@string/str\" />"), IsNull()); in TEST_F()
97 auto doc = Verify(R"EOF( in TEST_F()
759 EXPECT_THAT(Verify("<manifest package=\"android\" coreApp=\"1dp\" />"), IsNull()); in TEST_F()
762 Verify("<manifest package=\"android\" coreApp=\"true\" />"); in TEST_F()