當前位置:成語大全網 - 書法字典 - python單元測試引入unittest模塊後,壹個類如何包含多個方法使得setUp和methods只能執行壹次?

python單元測試引入unittest模塊後,壹個類如何包含多個方法使得setUp和methods只能執行壹次?

沒有全局設置和拆卸嗎?

@classmethod

Def tearDownClass(cls): #您必須使用@ classmethod裝飾器,並在所有測試運行後運行壹次。

打印(' 4444444 ')

@classmethod

Def setUpClass(cls): #您必須使用@classmethod裝飾器,並在運行之前運行所有測試壹次。

打印(' 33333 ')