摘要: # !/usr/bin/env python # -*- coding:utf-8 -*- import pytest def add(a, b): return a + b def test_add_001(): assert add(1, 2) == 2 def test_add_002(): 阅读全文
posted @ 2021-08-24 17:32 星德川 阅读(37) 评论(0) 推荐(0)