Searched refs:assertMatches (Results 1 – 1 of 1) sorted by relevance
/art/tools/checker/match/ |
D | test.py | 40 def assertMatches(self, checker_string, c1_string, var_state={}): member in MatchLines_Test 47 self.assertMatches("foo", "foo") 48 self.assertMatches("foo", " foo ") 49 self.assertMatches("foo", "foo bar") 53 self.assertMatches("foo bar", "foo bar") 54 self.assertMatches("foo bar", "abc foo bar def") 55 self.assertMatches("foo bar", "foo foo bar bar") 57 self.assertMatches("foo bar", "foo X bar") 61 self.assertMatches("foo{{A|B}}bar", "fooAbar") 62 self.assertMatches("foo{{A|B}}bar", "fooBbar") [all …]
|