def test_input_1_should_be_one(self):
		stringOperand = StringOperand(1)
		self.assertEqual('one', stringOperand.to_string())
	def test_input_2_should_be_two(self):
		stringOperand = StringOperand(2)
		self.assertEqual('two', stringOperand.to_string())