Beispiel #1
0
 def test_problem1_large(self):
     result = problem1.get_sum(1000)
     self.assertEqual(result, 233168)
	def test_problem1_large(self):
		result = problem1.get_sum(1000)
		self.assertEqual(result, 233168)
Beispiel #3
0
 def test_problem1_small(self):
     result = problem1.get_sum(10)
     self.assertEqual(result, 23)
	def test_problem1_small(self):
		result = problem1.get_sum(10)
		self.assertEqual(result, 23)