自动测试模板生成?

时间:2017-02-16 02:15:31

标签: python python-3.x unit-testing

有一些机械师给出了一些模块,例如

#N.py

__all__=["a", "b", ...]

def a(...):
    ...

def b(...):
    ...

...

为unittest创建一个模板,例如

#test_N.py
import unittest
import N

class Test_N(unittest.TestCase):

    def test_a(self):
        self.fail("Not implemented Test")

    def test_b(self):
        self.fail("Not implemented Test")

    def test_...

    ...

这类或类似的东西存在吗?或者我必须自己做?

0 个答案:

没有答案