file_name: test_abc.py import pytest # 引入pytest包 def test_a(): # test開頭的測試函數 print("------->test_a") assert 1 # 斷言成功 def ...
確定! 回上一頁