def test_dollarsToYuan_forNegativeAmount(self):
     result = MoneyExchange.dollarsToYuan(-10)
     self.assertEqual(0, result)
 def test_dollarsToYuan_forPositiveAmount(self):
     result = MoneyExchange.dollarsToYuan(10)
     self.assertEqual(68.5, result)