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