Пример #1
0
 def test_4(self):
     result = PT.find_longest_list(self.a)
     self.assertEqual(result, 1)
Пример #2
0
 def test_2(self):
     result = PT.find_longest_list(self.a, self.c, self.d)
     self.assertEqual(result, 3)
Пример #3
0
 def test_3(self):
     result = PT.find_longest_list(self.a, self.b, self.e)
     self.assertEqual(result, 4)
Пример #4
0
 def test_1(self):
     result = PT.find_longest_list(self.a, self.b, self.c)
     self.assertEqual(result, 3)
Пример #5
0
 def test_4(self):
     result = PT.find_longest_list(self.a)
     self.assertEqual(result, 1)   
Пример #6
0
 def test_3(self):
     result = PT.find_longest_list(self.a, self.b, self.e)
     self.assertEqual(result, 4)     
Пример #7
0
 def test_2(self):
     result = PT.find_longest_list(self.a, self.c, self.d)
     self.assertEqual(result, 3)           
Пример #8
0
 def test_1(self):
     result = PT.find_longest_list(self.a, self.b, self.c)
     self.assertEqual(result, 3)