码迷,mamicode.com
首页 >  
搜索关键字:UnitTest    ( 1062个结果
源码分享unittest接口框架AIM与纯面向对象框架pyface
在之前的视频《接口自动化项目用例组织设计》中: 我聊到了我的接口自动化经历,提到了两款以前做过的接口自动化框架,一个是tep的前身pyface,纯面向对象设计的框架;一个是pyface的前身AIM,基于unittest设计的。 AIM简介 AIM框架介绍 AIM,是Automatic Interfa ...
分类:其他好文   时间:2021-07-19 16:58:14    阅读次数:0
Pytest(1)安装与入门
pytest介绍 pytest是python的一种单元测试框架,与python自带的unittest测试框架类似,但是比unittest框架使用起来更简洁,效率更高。根据pytest的官方网站介绍,它具有如下特点: 非常容易上手,入门简单,文档丰富,文档中有很多实例可以参考 能够支持简单的单元测试和 ...
分类:其他好文   时间:2021-06-30 17:58:59    阅读次数:0
pytest测试夹具(fixture)简介
Fixture是pytest精髓所在,就像unittest中的setup和teardown一样,但相对之下它的功能更加强大和灵活。 ...
分类:其他好文   时间:2021-06-29 15:30:17    阅读次数:0
requests与Unittest的结合形成自动化测试
requests与Unittest的结合形成自动化测试 py文件1 import json import unittest,requests,parameterized def yun_login(username,password): url = "http://yun.zenm.vip/iot/ ...
分类:其他好文   时间:2021-06-25 16:50:40    阅读次数:0
unittest相关内容
unittest相关内容 一、什么是unittest unittest是Python单元测试框架,类似于JUnit框架。 unittest中有4个重要的概念:test fixture, test case, test suite, test runner Testcase: 一个TestCase的实 ...
分类:其他好文   时间:2021-06-24 18:12:57    阅读次数:0
unittest测试用例
import timeimport unittestdef my_sum(a, b): a += 1 b += 2 return a + b# 生成测试用例class TestSum(unittest.TestCase): def test_001(self): print(my_sum(1,2)) ...
分类:其他好文   时间:2021-06-24 17:47:34    阅读次数:0
requests+unittest接口自动化之报错:TypeError: list indices must be integers or slices, not str
今天再做接口自动化练习的时候,碰到了这个报错, 初看一下,就是数据类型错误。 报错:TypeError: list indices must be integers or slices, not str 仔细分析一下自己的报错信息,发现,原来是list的索引错误了。 解决方法: 少了那个索引,导致把 ...
分类:其他好文   时间:2021-06-19 18:49:15    阅读次数:0
pytest复习
复习补充 目前,一部分公司使用unittest,一部分使用pytest。但是,pytest明显具有优势。 复习补充unittest框架pytest运行规则pytest -m add -v -s pytest_Terminal.py 执行mark标记为add的测试用例pytest --junit-xm ...
分类:其他好文   时间:2021-06-15 17:44:52    阅读次数:0
自动化测试之争:code vs codeless
在TesterHome看到的一个话题,当我们选择做自动化时是否需要code 或者codeless。 code方案 用code去做自动化,实现过程就是拿个IDE撸代码。 python + pytest/unittest + appium/selenium/requests + ... Java + J ...
分类:其他好文   时间:2021-06-15 17:38:48    阅读次数:0
SpringBoot之单元测试的使用
一,我们的结构如下 二,代码UnitTestApplication package com.nl; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.Spr ...
分类:编程语言   时间:2021-06-10 18:27:41    阅读次数:0
1062条   1 2 3 4 ... 107 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!