我有各种python unitttest方法打包为TestSuite,一种特殊的测试方法就像是。
<input.MyTest testMethod=test_simple>
看起来这是一个类(这个东西的类型是input.MyTest
)但是有一个额外的属性(?)testMethod。
如何从属性test_simple
(或其他任何内容)中提取名称testMethod
?
测试代码(MyTest.py)
class MyTest(unittest.TestCase):
def test_simple(self):
pass
套件代码
from input import MyTest
suite = test.TestSuite()
suite.addTest(MyTest("test_simple"))
print suite._tests[0]