import os import pytest # pytest是python的單元測試框架def func(x): return x + 1 def test_a(): print("____test_a____") assert func(2) == 5 ...
確定! 回上一頁