1.import unitest------套路1,必须导入!! 2.#创建测试类--------------------套路2,测试名自取,最好首字母大写,必须继承unitest下的Testcase类!!! class 测试名(unitest.TestCase): 3.def setup(self):#--------------->钩子方法,所有用例执行前,都会执行这个方法,所以一般存放初始化内容,一般... 4.def test_01(self):#------------->第一条测试…