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