def test_isMatch_9(self): solution = Solution() self.assertFalse(solution.isMatch("aab", "c*a*b"))
def test_isMatch_1(self): solution = Solution() self.assertFalse(solution.isMatch("aa", "a"))
def test_isMatch_8(self): solution = Solution() self.assertTrue(solution.isMatch("ab", "?*"))
def test_isMatch_7(self): solution = Solution() self.assertTrue(solution.isMatch("aa", "a*"))
def test_isMatch_5(self): solution = Solution() self.assertFalse(solution.isMatch("acdcb", "a*c?b"))
def test_isMatch_4(self): solution = Solution() self.assertTrue(solution.isMatch("adceb", "*a*b"))
def test_isMatch_3(self): solution = Solution() self.assertFalse(solution.isMatch("cb", "?a"))