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