我有以下通过 py.test 运行的单元测试代码。 仅仅是构造函数的存在就会使整个类在运行时跳过 Py.test-v-s
收集了0个项目/1个跳过
有人能给我解释一下 py.test 的这种行为吗?
我对理解 py.test 行为很感兴趣,我知道不需要构造函数。
谢谢, Zdenek
class TestClassName(object):
def __init__(self):
pass
def setup_method(self, method):
print "setup_method called"
def teardown_method(self, method):
print "teardown_method called"
def test_a(self):
print "test_a called"
assert 1 == 1
def test_b(self):
print "test_b called"
assert 1 == 1