Searched refs:assertDoesNotMatch (Results 1 – 1 of 1) sorted by relevance
/art/tools/checker/match/ |
D | test.py | 44 def assertDoesNotMatch(self, checkerString, c1String, varState={}): member in MatchLines_Test 51 self.assertDoesNotMatch("foo", "XfooX") 52 self.assertDoesNotMatch("foo", "zoo") 59 self.assertDoesNotMatch("foo bar", "foo Xbar") 64 self.assertDoesNotMatch("foo{{A|B}}bar", "fooCbar") 70 self.assertDoesNotMatch("foo<<X>>bar", "foobar", {"X": "A"}) 71 self.assertDoesNotMatch("foo<<X>>bar", "foo bar", {"X": "A"}) 78 self.assertDoesNotMatch("foo<<X:A|B>>bar", "fooCbar") 87 self.assertDoesNotMatch("foo<<X:A|B>>bar<<X>>baz", "fooAbarBbaz") 95 self.assertDoesNotMatch("<<X:A>>bar", "Abaz", env) [all …]
|