Ejemplo n.º 1
0
 def test_4(self):
     r = RegexTree("(0.(0|(1.0))*)")
     self.assertTrue((regex_match(r, "001010")))
Ejemplo n.º 2
0
 def test_2(self):
     r = RegexTree("(0.(1|e))*")
     self.assertTrue((regex_match(r, "000")))
Ejemplo n.º 3
0
 def test_3(self):
     r = RegexTree("(1.(0.1)*)")
     self.assertTrue((regex_match(r, "10101")))
Ejemplo n.º 4
0
 def test_1_1(self):
     ''' Testing with r = 1, s = 1.'''
     r = RegexTree("1")
     self.assertTrue((regex_match(r, "1")))
Ejemplo n.º 5
0
 def test_1(self):
     r = RegexTree("(0.(1|0))*")
     self.assertTrue((regex_match(r, "010001")))
Ejemplo n.º 6
0
 def test_1_1(self):
     ''' Testing with r = 1, s = 1.'''
     r = RegexTree("1")
     self.assertTrue((regex_match(r, "1")))
Ejemplo n.º 7
0
 def test_4(self):
     r = RegexTree("(0.(0|(1.0))*)")
     self.assertTrue((regex_match(r, "001010")))
Ejemplo n.º 8
0
 def test_3(self):
     r = RegexTree("(1.(0.1)*)")
     self.assertTrue((regex_match(r, "10101")))
Ejemplo n.º 9
0
 def test_2(self):
     r = RegexTree("(0.(1|e))*")
     self.assertTrue((regex_match(r, "000")))
Ejemplo n.º 10
0
 def test_1(self):
     r = RegexTree("(0.(1|0))*")
     self.assertTrue((regex_match(r, "010001")))