import pytest class TestCase(): def setup_class(self): print("setup_class:所有用例执行之前") def setup_method(self): print("setup_method: 每个用例开始前执行") def tear ...
分类:
编程语言 时间:
2020-07-07 20:29:29
阅读次数:
106
一、unitest基础写法格式 1.1引用导入importunittest并且需要新建一个类,继承unittestclassDemo(unittest.TestCase):1.2格式代码示例备注:1.用例的方法名中,要以test开头才能被读取出来2.用例的读取顺序按照方法名的ASCII码顺序运行,顺序:0-9,A-Z,a-z#--coding:utf-8--importunittestclassD
分类:
Web程序 时间:
2020-07-07 16:03:05
阅读次数:
80
前言 pytest+allure是最完美的结合了,关于allure的使用,本篇做一个总结。 allure报告可以很多详细的信息描述测试用例,包括epic、feature、story、title、issue、testcase、severity等 环境准备 python 3.6 pytest 4.5.0 ...
分类:
其他好文 时间:
2020-07-04 16:51:31
阅读次数:
119
import unittest def sum_number(a, b): return a + b class MyTestCase(unittest.TestCase): # def test_something(self): # self.assertEqual(True, False) @c ...
分类:
编程语言 时间:
2020-07-01 00:08:35
阅读次数:
105
open -n /Applications/Wireshark.app 呃 今天遇到个问题,只在macos_nfsv4上发生, smb 和 nfsv3都pass 我debug的方法是: 在testcase处,打断点,然后一步步调用; 在testcase处,打log / print --> 在底层调用 ...
分类:
系统相关 时间:
2020-06-29 00:12:26
阅读次数:
246
#count_01.py class Count: def add(self,a,b): return a + b #testcase_01.py import unittest from count_01 import Count #1、必须创建测试类,且必须继承unittest.TestCase ...
分类:
其他好文 时间:
2020-06-27 00:31:09
阅读次数:
78
Test_Request_Module.py import requests class Test_Request: def __init__(self,ip): self.ip = ip def ip_address(self): url = "http://apis.juhe.cn/ip/ipN ...
分类:
其他好文 时间:
2020-06-26 16:28:42
阅读次数:
62
1 @ddt 2 class RegisterTestCase(unittest.TestCase): 3 cases = [ 4 {"title": "注册成功", "excepted": {"code": 1, "msg": "注册成功"}, "data": ['python1', '12345 ...
分类:
其他好文 时间:
2020-06-26 13:04:35
阅读次数:
69
unittest测试用例类的写法 定义测试用例类: 用例类必须继承于unittest.TestCase 定义测试用例: 在测试用例类中,每一个以test开头的方法就是一条用例 unittest中测试用例执行顺序 根据方法名按照ASCII码进行排序的 unittest中会自动根据用例方法执行的时候,是 ...
分类:
其他好文 时间:
2020-06-26 12:38:05
阅读次数:
52
问题描述: 在MacOS上,支持 smb & nfs; 有个testcase 与 hardlink相关, hardlink只存在nfs上。 更不可详细描述的细节, 类似于如下: global parameter = smb def set_up(self): global parameter par ...
分类:
其他好文 时间:
2020-06-25 23:28:10
阅读次数:
91