Exemple #1
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('', ''), "")
Exemple #2
0
 def test_Vocabulary(self):
     with self.assertRaises(IndexError):
         lab1.Vocabulary('hello hello hello hello', 'hello')
Exemple #3
0
 def test_Vocabulary(self):
     self.assertEqual(
         lab1.Vocabulary('hello hello hello hello', 'hello goodbye'),
         "goodbye goodbye goodbye goodbye")
Exemple #4
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('hello world', ''), "hello world")
Exemple #5
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('Privet mir', 'hello goodbye'),
                      "Privet mir")
Exemple #6
0
 def test_Vocabulary(self):
     self.assertEqual(lab1.Vocabulary('hello world', 'hello goodbye'),
                      "goodbye world")
Exemple #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")