Exemplo n.º 1
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('', ''), "")
Exemplo n.º 2
0
 def test_Vocabulary(self):
     with self.assertRaises(IndexError):
         lab1.Vocabulary('hello hello hello hello', 'hello')
Exemplo n.º 3
0
 def test_Vocabulary(self):
     self.assertEqual(
         lab1.Vocabulary('hello hello hello hello', 'hello goodbye'),
         "goodbye goodbye goodbye goodbye")
Exemplo n.º 4
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('hello world', ''), "hello world")
Exemplo n.º 5
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('Privet mir', 'hello goodbye'),
                      "Privet mir")
Exemplo n.º 6
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('hello world', 'hello goodbye'),
                      "goodbye world")
Exemplo n.º 7
0
 def test_Vocabulary(self):
     self.assertEqual(
         lab1.Vocabulary('hello earth, hello mars, hello sun',
                         'hello goodbye\nsun moon'),
         "goodbye earth, goodbye mars, goodbye moon")