Python基础学习九 单元测试
摘要:
1 import unittest 2 import HTMLTestRunner #产生测试报告 3 from BeautifulReport import BeautifulReport 4 5 def calc(x,y): 6 return x+y 7 8 class TestCalc(unittest.TestCase): 9 def test_pa... 阅读全文
posted @ 2018-03-09 11:19 louis_w 阅读(270) 评论(0) 推荐(0) 编辑