摘要: unittest原名为PyUnit,是由java的JUnit衍生而来。对于单元测试,需要设置预先条件,对比预期结果和实际结果。 整体结构:unittest库提供了test cases, test suites, test fixtures,test runner: test case :通过继承Te 阅读全文
posted @ 2017-11-18 21:57 liuhuanv 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 1、建立一个函数或者类(继承unittest.TestCase) 1 #coding=utf-8 2 3 import sys 4 import requests 5 import HTMLParser 6 import unittest 7 8 sys.path.append(r'E:\works 阅读全文
posted @ 2017-11-18 21:08 liuhuanv 阅读(154) 评论(0) 推荐(0) 编辑