猿问

cloud9中的python unittest不启动

抱歉,您的问题很愚蠢。我正在尝试进行单元测试,这是一个非常简单的单元测试,在Cloud9 IDE中,测试代码为:


import unittest

import random


from fee import fee


class 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次测试?有一个测试,为什么不启动?


MMTTMM
浏览 185回答 1
1回答
随时随地看视频慕课网APP

相关分类

Python
我要回答