前言
用過unittest的童鞋都知道,有兩個前置方法,兩個后置方法;分別是
- setup()
- setupClass()
- teardown()
- teardownClass()
Pytest也貼心的提供了類似setup、teardown的方法,并且還超過四個,一共有十種
- 模塊級別:setup_module、teardown_module
- 函數(shù)級別:setup_function、teardown_function,不在類中的方法
- 類級別:setup_class、teardown_class
- 方法級別:setup_method、teardown_method
- 方法細化級別:setup、teardown
代碼
用過unittest的童鞋,對這個前置、后置方法應該不陌生了,我們直接來看代碼和運行結果
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
__title__ =
__Time__ = 2020-04-06 11:40
__Author__ = 小菠蘿測試筆記
__Blog__ = https://www.cnblogs.com/poloyy/
"""
import pytest
def setup_module():
print("=====整個.py模塊開始前只執(zhí)行一次:打開瀏覽器=====")
def teardown_module():
print("=====整個.py模塊結束后只執(zhí)行一次:關閉瀏覽器=====")
def setup_function():
print("===每個函數(shù)級別用例開始前都執(zhí)行setup_function===")
def teardown_function():
print("===每個函數(shù)級別用例結束后都執(zhí)行teardown_function====")
def test_one():
print("one")
def test_two():
print("two")
class TestCase():
def setup_class(self):
print("====整個測試類開始前只執(zhí)行一次setup_class====")
def teardown_class(self):
print("====整個測試類結束后只執(zhí)行一次teardown_class====")
def setup_method(self):
print("==類里面每個用例執(zhí)行前都會執(zhí)行setup_method==")
def teardown_method(self):
print("==類里面每個用例結束后都會執(zhí)行teardown_method==")
def setup(self):
print("=類里面每個用例執(zhí)行前都會執(zhí)行setup=")
def teardown(self):
print("=類里面每個用例結束后都會執(zhí)行teardown=")
def test_three(self):
print("three")
def test_four(self):
print("four")
if __name__ == '__main__':
pytest.main(["-q", "-s", "-ra", "setup_teardown.py"])
執(zhí)行結果
到此這篇關于Pytest實現(xiàn)setup和teardown的詳細使用詳解的文章就介紹到這了,更多相關Pytest setup和teardown內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- 簡單了解pytest測試框架setup和tearDown