Exemple #1
0
 def test_square_of_sum_100(self):
     self.assertEqual(square_of_sum(100), 25502500)
Exemple #2
0
 def test_square_of_sum_1(self):
     self.assertEqual(square_of_sum(1), 1)
 def test_square_of_sum_5(self):
     self.assertEqual(225, square_of_sum(5))
Exemple #4
0
 def test_square_of_sum_5(self):
     self.assertEqual(square_of_sum(5), 225)
Exemple #5
0
 def test_square_of_sum_5(self):
     self.assertEqual(225, square_of_sum(5))
 def test_square_of_sum_100(self):
     self.assertEqual(25502500, square_of_sum(100))
Exemple #7
0
 def test_square_of_sum_5(self):
     assert square_of_sum(5) == 225
Exemple #8
0
 def test_square_of_sum_1(self):
     assert square_of_sum(1) == 1
Exemple #9
0
 def test_square_of_sum_100(self):
     assert square_of_sum(100) == 25502500
 def test_square_of_sum_1(self):
     self.assertEqual(square_of_sum(1), 1)
 def test_square_of_sum_5(self):
     self.assertEqual(square_of_sum(5), 225)