当前位置:网站首页>[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 .
边栏推荐
- Daily question brushing record (XV)
- 吴恩达2022机器学习课程评测来了!
- Microsoft win11 is still "unsatisfactory". Multi user feedback will cause frequent MSI crashes
- One minute to learn how to install the system, win7 XP, win10 and win11 become very simple
- 英国都在试行4天工作制了,为什么BAT还对996上瘾?
- Please help xampp to do sqlilab is a black
- Implementation steps of mysql start log in docker
- Automatic test tool katalon (WEB) test operation instructions
- Experiment 4: installing packages from Gui
- 11 preparations for Web3 and Decentralization for traditional enterprises
猜你喜欢
电脑重装系统u盘文件被隐藏要怎么找出来
The "white paper on the panorama of the digital economy" has been released with great emphasis on the digitalization of insurance
DAY FIVE
Detailed explanation of regular expression (regexp) in MySQL
Cas d'essai fonctionnel universel de l'application
Today's sleep quality record 78 points
matplotlib画柱状图并添加数值到图中
Zero code and high return. How to use 40 sets of templates to meet 95% of the reporting needs in the work
Gradle知识概括
Matplotlib draws a histogram and adds values to the graph
随机推荐
flinksql select id ,count(*) from a group by id .
DAY FOUR
How to implement Lua entry of API gateway
Please help xampp to do sqlilab is a black
Interface joint debugging test script optimization v4.0
《数字经济全景白皮书》保险数字化篇 重磅发布
Unity 颜色板|调色板|无级变色功能
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
There are only two TXT cells in the ArrayExpress database. Can you only download the sequencing run matrix from line to ENA?
leetcode:236. 二叉树的最近公共祖先
Leetcode problem solving - 889 Construct binary tree according to preorder and postorder traversal
Zero code and high return. How to use 40 sets of templates to meet 95% of the reporting needs in the work
Master binary tree in one article
亚朵三顾 IPO
Server SMP, NUMA, MPP system learning notes.
Yaduo Sangu IPO
【无人机】多无人协同任务分配程序平台含Matlab代码
How does win11 restore the traditional right-click menu? Win11 right click to change back to traditional mode
英国都在试行4天工作制了,为什么BAT还对996上瘾?
Penetration test --- database security: detailed explanation of SQL injection into database principle