Ejemplo n.º 1
0
 def test_square_of_sum_100(self):
     self.assertEqual(square_of_sum(100), 25502500)
Ejemplo n.º 2
0
 def test_square_of_sum_1(self):
     self.assertEqual(square_of_sum(1), 1)
Ejemplo n.º 3
0
 def test_square_of_sum_5(self):
     self.assertEqual(225, square_of_sum(5))
Ejemplo n.º 4
0
 def test_square_of_sum_5(self):
     self.assertEqual(square_of_sum(5), 225)
Ejemplo n.º 5
0
 def test_square_of_sum_5(self):
     self.assertEqual(225, square_of_sum(5))
Ejemplo n.º 6
0
 def test_square_of_sum_100(self):
     self.assertEqual(25502500, square_of_sum(100))
Ejemplo n.º 7
0
 def test_square_of_sum_5(self):
     assert square_of_sum(5) == 225
Ejemplo n.º 8
0
 def test_square_of_sum_1(self):
     assert square_of_sum(1) == 1
Ejemplo n.º 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)