Pytest操作方法

1.先寫一個方法 class Calc(): def add(self,a,b): c = a+b return c def jian(self,a,b): c = a-b return c a = Calc() c = a.jian(3,2) print© 2.驗證方法是否正確 ①正確的情況下 import pytest #導入pytest模塊 from funcDemo.Calc import
相關文章
相關標籤/搜索