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