gpt4 book ai didi

python - 如何使用 Atom 编辑器运行 Python 单元测试?

转载 作者:太空狗 更新时间:2023-10-29 21:22:09 24 4
gpt4 key购买 nike

我正在试用 Atom 编辑器,想知道如何使用键盘快捷键运行 Python 单元测试。

最佳答案

安装

  1. 安装 Atom编辑
  2. 安装 Script像这样包装:

    a) 启动原子

    b) 按Ctrl+Shift+P,输入“install packages and themes”然后按Enter打开包 View

    c) 搜索“脚本”并安装包

单元测试示例test.py

  1. 编写单元测试并将其保存为test.py

    import unittest

    class MyTest(unittest.TestCase):

    def test_pass(self):
    pass

    def test_fail(self):
    call_method_that_does_not_exist()

    if __name__ == '__main__':
    unittest.main()

运行单元测试

  1. 现在,按 Ctrl+I运行 Python 脚本 ( see documentation )

控制台输出

因为单元测试 test_fail 会失败,这将是控制台输出:

E.
======================================================================
ERROR: test_fail (__main__.MyTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/Lernkurve/Desktop/PythonDemos/a.py", line 9, in test_fail
call_method_that_does_not_exist()
NameError: global name 'call_method_that_does_not_exist' is not defined

----------------------------------------------------------------------
Ran 2 tests in 0.000s

FAILED (errors=1)
[Finished in 0.047s]

关于python - 如何使用 Atom 编辑器运行 Python 单元测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27994928/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com