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