我是靠谱客的博主 含蓄毛豆,最近开发中收集的这篇文章主要介绍Python3 unittest 发现不了test case,返回no tests were found,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
学习unittest过程,遇到no tests were found错误,
执行如下示例代码,unittest.main()运行后,代码没有进入到NamesTestCase运行。
import unittest
from NameFunction import get_formatted_name
class NamesTestCase(unittest.TestCase):
def test_first_last_name(self):
formatted_name=get_formatted_name('elsa', 'chen')
self.assertEqual(formatted_name, 'Elsa Chen')
unittest.main()
代码没有进入方法test_first_last_name()中,所以会出现no tests were found的情况
为了让代码行 unittest.main() 让 Python 运行这个文件中的测试,在python 3.x版本中,需要写成如下格式才能支持执行测试用例
if __name__ == '__main__':
unittest.main()
亲自正确
最后
以上就是含蓄毛豆为你收集整理的Python3 unittest 发现不了test case,返回no tests were found的全部内容,希望文章能够帮你解决Python3 unittest 发现不了test case,返回no tests were found所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复