• Python 在Visual studio 中做单元测试进行TDD开发


    Unit Tests

    Steve Dower edited this page on 14 Jul · 3 revisions

    Unit tests are short sections of code that test small pieces of functionality belonging to a larger program. By demonstrating that each piece of a program is correct, it is easier to infer that the entire program is correct.

    Python uses unit tests extensively to validate scenarios while designing a program. Python Tools for Visual Studio includes support for discovering, executing and debugging unit tests. This allows you to author your tests and run them without having to switch to a command prompt.

    Discovering Tests

    PTVS will discover tests using the standard unittest package. To ensure your test can be found and run, follow these rules:

    • Import unittest
    • Derive a class from unittest.TestCase
    • Define a method named "test"
    • (Optional) Add a call to unittest.main()
      • This will allow you to run your script directly to execute the tests

    To add a module with a test class, select Project -> Add New Item (Ctrl+Shift+A) and choose "Python Unit Test".

    New Unit Test

    This will add a new file containing a basic unit test.

    import unittest
    
    class Test_test1(unittest.TestCase):
        def test_A(self):
            self.fail("Not implemented")
    
    if __name__ == '__main__':
        unittest.main()

    Hit Save All (Ctrl+Shift+S) to save the project file, and your test will be discovered and displayed in the Test Explorer. (If you do not see the Test Explorer window, click the Test menu, then Windows and Test Explorer.)

    Important: If you do not see your test in the Test Explorer window, check our beta caveats for known issues and workarounds.

    test_A

    As you add more tests to your project, you may prefer to group or filter the tests that are displayed. The "Group By" menu on the toolbar will allow you to collect your tests into different groups, and the search toolbox will filter by matching names. Double-clicking a test will open the source file containing the test implementation.

    Tests Group Menu Grouped by Class Grouped by Filter Grouped by Outcome

    Running Tests

    Tests can be run by clicking "Run All" in the Test Explorer window, or by selecting one or more tests or groups, right-clicking and selecting "Run Selected Tests". Tests will be run in the background and the display will be updated to show the results.

    Tests that pass are shown with a green tick. The amount of time taken to run the test is also displayed.

    test_A passed

    Tests that fail are shown with a red cross. The "Output" link can be clicked to display the text that was printed to the console during the test, including the standard unittest output.

    test_A failed

    test_A failed with reason

    Debugging Tests

    Tests can be debugged by right-clicking a test and selecting "Debug Selected Tests". (Note that "Analyze Code Coverage for Selected Tests" and "Profile Test" are not supported.) Ensure you have set a breakpoint in your test. When the breakpoint is hit, the normal debugging experience is available until the test completes.

    Debug Test

    Debugging a test

    Known Issues

    • When starting debugging, VS will appear to start and stop debugging, before starting again. This is expected.
    • When debugging multiple tests, each one is run independently, which will interrupt the debugging session.
    • VS will intermittently fail to start a test when debugging. Normally, attempting to debug the test again will succeed.
    • When debugging, it is possible to step out of a test into the unittest implementation. Normally, the next step will run to the end of the program and stop debugging.
  • 相关阅读:
    关于Oracle数据库字符集
    NK3C:关于svg文件使用
    NK3C:异常处理(前端)
    关于返回值问题
    NK3C开发要点
    velocity模板使用建议
    样本随机抽样、局号抽样逻辑
    样本回收逻辑
    NKUI框架使用
    解决chrome,下载在文件夹中显示,调用错误的关联程序
  • 原文地址:https://www.cnblogs.com/micro-chen/p/4892613.html
Copyright © 2020-2023  润新知