抱歉,您的问题很愚蠢。我正在尝试进行单元测试,这是一个非常简单的单元测试,在Cloud9 IDE中,测试代码为:import unittestimport randomfrom fee import feeclass FeeTestCase(unittest.TestCase): def test_number_income(self): self.assertTrue(12349 == fee(12345), "Fee function returns incorrent value.") 测试的代码是:def fee(income): try: income = float(income) return income*0.13 except ValueError: return False因此,我在控制台中编写了“ $ python -m unittest test”,它说:在0.000s内进行了0次测试好的我被卡住了,不明白为什么要进行0次测试?有一个测试,为什么不启动?
添加回答
举报
0/150
提交
取消