当前位置:网站首页>[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 .
边栏推荐
- (LeetCode)两数之和
- Talking about the current malpractice and future development
- After 3 years of testing bytecan software, I was ruthlessly dismissed in February, trying to wake up my brother who was paddling
- 【OFDM通信】基于深度学习的OFDM系统信号检测附matlab代码
- [system analyst's road] Chapter 7 double disk system design (service-oriented development method)
- 求帮助xampp做sqlilab是一片黑
- 在Docker中分分钟拥有Oracle EMCC 13.5环境
- okcc呼叫中心的订单管理时怎么样的
- How can Oracle CDC deserialize with jsondebeziumdeserializationschema
- PostgreSQL高可用之repmgr(1主2从+1witness)+Pgpool-II实现主从切换+读写分离
猜你喜欢
Example code of MySQL split string as query condition
DAY TWO
AVL树到底是什么?
matplotlib画柱状图并添加数值到图中
Cas d'essai fonctionnel universel de l'application
The important data in the computer was accidentally deleted by mistake, which can be quickly retrieved by this method
自动化测试工具Katalon(Web)测试操作说明
If the request URL contains jsessionid, the solution
Knowledge * review
[communication] optimal power allocation in the uplink of two-layer wireless femtocell network with matlab code
随机推荐
Wu Enda 2022 machine learning course evaluation is coming!
谁说新消费品牌大溃败?背后有人赢麻了
MVC and MVVM
Per capita Swiss number series, Swiss number 4 generation JS reverse analysis
求帮助xampp做sqlilab是一片黑
Can online reload system software be used safely? Test use experience to share with you
Gradle知识概括
Who said that new consumer brands collapsed? Someone behind me won
ArrayExpress数据库里的细胞只有两个txt是不是只能根据Line到ENA下载测序跑矩阵?
app通用功能测试用例
If the request URL contains jsessionid, the solution
传统企业要为 Web3 和去中心化做的 11 个准备
Let me ask you if there are any documents or cases of flynk SQL generation jobs. I know that flynk cli can create tables and specify items
app通用功能測試用例
The best sister won the big factory offer of 8 test posts at one go, which made me very proud
Server SMP, NUMA, MPP system learning notes.
Entropy information entropy cross entropy
pinia 模块划分
[unmanned aerial vehicle] multi unmanned cooperative task allocation program platform, including Matlab code
【212】php发送post请求有哪三种方法