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