当前位置:网站首页>[automated testing framework] what you need to know about unittest
[automated testing framework] what you need to know about unittest
2022-07-06 23:52:00 【Test Xiaona】
One 、UnitTest The unit test framework provides those functions
1. Provides use case organization and execution
How to define a “ The test case ”?
How to flexibly control these “ The test case ” Implementation ?
2. Provide abundant assertion methods
When the execution result of the test case is inconsistent with the expected result , Determine that the test case failed . In automated testing , adopt “ Assertion ” To determine whether the test case execution is successful , The testing framework provides rich assertion methods , for example : Judge equal / Unequal inclusion / It doesn't contain 、True/False etc.
3. Provide rich logs
The reason for the failure needs to be clearly seen from the results . in addition , We also need to count the execution results of test cases , Such as total execution time 、 Number of failed test cases 、 Number of successful test cases, etc , These functions are also provided by the unit test framework .
Two 、 know unittest
1. introduce unittest modular , Custom classes must inherit unittest Modular TestCase class
2. Test method created , Must be test start
3. Important concepts
3.1 TestCase
Test Case Is the smallest test unit , A specific return value used to check a specific set of inputs .unittest Provided TestCase The base class is inherited by the custom test class , It can be used to create new test cases
3.2 TestSuite
A test suite is a test case \ Test suite or a collection of both , Used to assemble a set of tests to run
3.3 Test Runner
Test Runner Is a component , Used to coordinate test execution and provide results to users .Test Runner You can use a graphical interface 、 A text interface or a special value is returned to display the results of the test execution
3.4 Test Fixture
Test Fixture Represents the environmental preparation required to perform one or more tests , And associated cleanup actions .
3、 ... and 、 assert methods
Four 、 Organization of test cases
1、unittest Medium TestLoader Class provides the discover() Method can find test cases from multiple files
2、 Find all test modules in the specified directory and its subdirectories , Only matching file names can be loaded , If you are not starting the top-level Directory , Then the top-level directory must be specified separately
discover(start_dir,pattern=’ test*.py’ ,top_level_dir=None)
3、start_dir: Module name or test case directory to be tested
4、pattern= 'test*.py’: Matching principle of test case file name
5、top_level_dir: Top level directory of the test module , If there is no top-level Directory , The default is None
5、 ... and 、 Execution order of test cases
Multiple directories > Multiple test files > Multiple test classes > Multiple test methods
Execute the test case of multi-level directory
unittest The default in accordance with the ASCII Code sequence loading test cases ( The alphabetical and numerical order is 0-9,A-Z,a-z)
Execute multi-level subdirectories to lower one __init__.py file , This file is used to mark a directory as a standard python modular
import unittest test_dir = './test_case' suite=unittest.defaultTestLoader.discover(test_dir, pattern='test*.py') if __name__ == '__main__': runner = unittest.TextTestRunner() runner.run(suite)
6、 ... and 、 Skip tests and expected failures
7、 ... and 、 Data driven applications
Installation mode
pip install parameterized
Usage mode
adopt @parameterized.expand() To decorate test cases ,expand Each tuple in is considered a test case , The data in the tuple is the change value of the test case
Finally, thank everyone who reads my article carefully , Watching the rise and attention of fans all the way , Reciprocity is always necessary , Although it's not very valuable , If you can use it, you can take it
These materials , For doing 【 software test 】 For our friends, it should be the most comprehensive and complete war preparation warehouse , This warehouse also accompanied me through the most difficult journey , I hope it can help you ! Everything should be done as soon as possible , Especially in the technology industry , We must improve our technical skills . I hope that's helpful …….
If you don't want to experience it again, you can't find information when you study on your own , No one answers the question , If you insist on giving up after a few days , You can add mine below qq Group discussion and Exchange , There are also various software testing materials and technical exchanges .
边栏推荐
- 2022 latest blind box mall complete open source operation source code / docking visa free payment interface / building tutorial
- Asset security issues or constraints on the development of the encryption industry, risk control + compliance has become the key to breaking the platform
- The same job has two sources, and the same link has different database accounts. Why is the database list found in the second link the first account
- Implementation steps of mysql start log in docker
- Competition between public and private chains in data privacy and throughput
- PostgreSQL高可用之repmgr(1主2从+1witness)+Pgpool-II实现主从切换+读写分离
- DAY TWO
- Entropy information entropy cross entropy
- js导入excel&导出excel
- 《数字经济全景白皮书》保险数字化篇 重磅发布
猜你喜欢
DAY ONE
快讯 l Huobi Ventures与Genesis公链深入接洽中
The largest single investment in the history of Dachen was IPO today
B 站弹幕 protobuf 协议还原分析
【无人机】多无人协同任务分配程序平台含Matlab代码
How to implement Lua entry of API gateway
Gold three silver four, don't change jobs
Hydrogen future industry accelerates | the registration channel of 2022 hydrogen energy specialty special new entrepreneurship competition is opened!
If the request URL contains jsessionid, the solution
The intranet penetrates the zerotier extranet (mobile phone, computer, etc.) to access intranet devices (raspberry pie, NAS, computer, etc.)
随机推荐
Example code of MySQL split string as query condition
[unmanned aerial vehicle] multi unmanned cooperative task allocation program platform, including Matlab code
Knowledge * review
亚朵三顾 IPO
AI金榜题名时,MLPerf榜单的份量究竟有多重?
The programmer refused the offer because of low salary, HR became angry and netizens exploded
氢创未来 产业加速 | 2022氢能专精特新创业大赛报名通道开启!
本地部署 zeppelin 0.10.1
The method of reinstalling win10 system is as simple as that
Basic chart interpretation of "Oriental selection" hot out of circle data
Newsletter L Huobi ventures is in-depth contact with genesis public chain
leetcode:236. 二叉树的最近公共祖先
[system analyst's road] Chapter 7 double disk system design (service-oriented development method)
Local deployment Zeppelin 0.10.1
Stop saying that microservices can solve all problems
【无人机】多无人协同任务分配程序平台含Matlab代码
Gradle knowledge generalization
(LeetCode)两数之和
Can online reload system software be used safely? Test use experience to share with you
leetcode:236. The nearest common ancestor of binary tree