Python web自動化測試框架搭建(功能&接口)——unittest介紹

Python UnitTest測試框架介紹html

1)         TestCase:全部測試用例類繼承的基本類, TestCase的實例就是測試用例web

2)         TestSuite:測試套件,能夠將用例「組裝」起來框架

3)         TestLoader:是用來加載TestCase到TestSuite中的學習

4)         TextTextRunner:執行測試用例,其中的run(test)會執行TestSuite/TestCase中的run(result)方法測試

5)         TextTestResult:測試的結果會保存到TextTestResult實例中ui

流程:首先寫好TestCase,而後由TestLoader加載TestCase到TestSuite,而後由TextTestRunner來運行TestSuite,運行的結果保存在TextTestResult中,整個過程集成在unittest.main模塊中。spa

 

關於unittest框架的使用此處再也不多說,學習可參考 http://www.cnblogs.com/yufeihlf/p/5707929.html htm

 

Python web功能&接口自動化測試框架搭建——接口用例實現blog

Python web功能&接口自動化測試框架搭建——接口公共方法繼承

Python web功能&接口自動化測試框架搭建——接口測試模塊

Python web功能&接口自動化測試框架搭建——功能測試模塊

Python web功能&接口自動化測試框架搭建——測試用例執行和結果收集

Python web功能&接口自動化測試框架搭建——通用模塊

Python web功能&接口自動化測試框架搭建——unittest介紹

Python web功能&接口自動化測試框架搭建——環境搭建

相關文章
相關標籤/搜索