Exemplo n.º 1
0
 def test_problem1_large(self):
     result = problem1.get_sum(1000)
     self.assertEqual(result, 233168)
Exemplo n.º 2
0
	def test_problem1_large(self):
		result = problem1.get_sum(1000)
		self.assertEqual(result, 233168)
Exemplo n.º 3
0
 def test_problem1_small(self):
     result = problem1.get_sum(10)
     self.assertEqual(result, 23)
Exemplo n.º 4
0
	def test_problem1_small(self):
		result = problem1.get_sum(10)
		self.assertEqual(result, 23)