在测试用例类之外使用单元测试进行断言
这是可行的:
class TestSequenceFunctions(unittest.TestCase):
def test_choice(self):
self.assertEquals(1, 1, 'they are equal!')
class OtherClass ( val ):
但我想要 OtherClass 类中的assertEquals 并从 TestSequenceFunctions 类中调用它。但它会生成错误:“全局名称“self”未定义”。请帮忙;)
This works:
class TestSequenceFunctions(unittest.TestCase):
def test_choice(self):
self.assertEquals(1, 1, 'they are equal!')
class OtherClass ( val ):
But I want the assertEquals in the OtherClass class and call it from the TestSequenceFunctions class. But it generates a error: "global name "self" is not defined". Please help ;)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论