MOOC- case依赖读取json配置文件进行多个接口请求-执行测试用例(16)
Posted come202011
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MOOC- case依赖读取json配置文件进行多个接口请求-执行测试用例(16)相关的知识,希望对你有一定的参考价值。
执行测试用例
# -*- coding: utf-8 -*- # @Time : 2020/2/12 22:56 # @File : run_test_16.py # @Author: Hero Liu import sys sys.path.append("h:/python_lemon") import unittest from day_20200208_mooc.base.test_class_15 import TestRequest import htmlTestRunner suite = unittest.TestSuite() loader = unittest.TestLoader() suite.addTest(loader.loadTestsFromTestCase(TestRequest)) # runner = unittest.TextTestRunner(verbosity=2) # runner.run(suite) with open("../data/result.html", "wb") as file: runner = HTMLTestRunner.HTMLTestRunner(stream=file, title="依赖case测试", description="加油,相信一定可以看到曙光") runner.run(suite)
以上是关于MOOC- case依赖读取json配置文件进行多个接口请求-执行测试用例(16)的主要内容,如果未能解决你的问题,请参考以下文章
MOOC- case依赖读取json配置文件进行多个接口请求-执行测试用例(16)
MOOC- case依赖读取json配置文件进行多个接口请求-发送测试报告邮件(19)
MOOC- case依赖读取json配置文件进行多个接口请求-模拟接口响应数据(18)