def test_input_2_should_be_2(self):
		intOperand = IntOperand(2)
		self.assertEqual('2', intOperand.to_string())
	def test_input_1_should_be_1(self):
		intOperand = IntOperand(1)
		self.assertEqual('1', intOperand.to_string())