博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 断言大全
阅读量:5886 次
发布时间:2019-06-19

本文共 2795 字,大约阅读时间需要 9 分钟。

参考链接:https://blog.csdn.net/qq1124794084/article/details/51668672

 

1. 小数位模糊等于

 

 

 

 

 

自动化脚本最重要的是断言,正确设置断言以后才能帮助我们判断测试用例执行结果。

在小同事的帮助下,整理了一份比较详细的断言方法。

一、先说说unittest常用的断言吧

常用的就以下几个,网上一搜一大堆。python版本2.7以上都可以调用了。

断言语法 解释
assertEqual(a, b)  判断a==b
assertNotEqual(a, b) 判断a!=b
assertTrue(x) bool(x) is True
assertFalse(x) bool(x) is False
assertIs(a, b) a is b
assertIsNot(a, b)  a is not b
assertIsNone(x)  x is None
assertIsNotNone(x) x is not None
assertIn(a, b)  a in b
assertNotIn(a, b) a not in b
assertIsInstance(a, b) isinstance(a, b) 
assertNotIsInstance(a, b)  not isinstance(a, b)
二、最近整理的一些

在官方文档里面看到的整理一下,有些还来不及翻译。

(first, second[, places, ...])

适用于小数,place是应最少几位相等布尔值才为1(默认为7),如果在place位以内不同则断言失败。

(expected, actual[, msg])

检查实际是否超预期

(d1, d2[, msg])

前后字典是否相同

(first, second[, msg])

前后两个数不等的话,失败

(expr[, msg])

检查表达式是否为假

(a, b[, msg])

self.assertTrue(a > b)用法一样,但是多了设置条件 .

(a, b[, msg])

self.assertTrue(a > =b)用法一样,但是多了设置条件 .

(member, container[, msg])

self.assertTrue(a in b)

(expr1, expr2[, msg])

assertTrue(a is b)

(obj, cls[, msg])

Isinstance(a,b)

(obj[, msg])

Obj is none.

(expr1, expr2[, msg])

a is not b.

(obj[, msg])

Obj is not none.

(expected_seq, actual_seq[, msg])

一个无序的序列特异性的比较。

(a, b[, msg])

Just like self.assertTrue(a < b), but with a nicer default message.

(a, b[, msg])

Just like self.assertTrue(a <= b), but with a nicer default message.

(list1, list2[, msg])

List1list2是否相等.

(first, second[, msg])

断言,2个多行字符串是相等的

(first, second[, ...])

Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is less than the given delta.

(first, second[, ...])

Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is less than the given delta.

(first, second[, msg])

Fail if the two objects are equal as determined by the ‘==’

(first, second[, msg])

Fail if the two objects are equal as determined by the ‘==’

(member, container[, msg])

Just like self.assertTrue(a not in b), but with a nicer default message.

(obj, cls[, msg])

Included for symmetry with assertIsInstance.

(text, unexpected_regexp)

如果文本匹配正则表达式,将失败。

(excClass[, callableObj])

除非excclass类抛出异常失败

(expected_exception, ...)

认为在引发异常的情况下消息匹配一个正则表达式。

(text, expected_regexp[, msg])

测试失败,除非文本匹配正则表达式。

(seq1, seq2[, msg, seq_type])

有序序列的相等断言 (like lists and tuples).

(set1, set2[, msg])

A set-specific equality assertion.

(expr[, msg])

Check that the expression is true.

(tuple1, tuple2[, msg])

A tuple-specific equality assertion.

(expr[, msg])

Check that the expression is true.

三、在unittest包里面看到的比较全的断言

 

转载于:https://www.cnblogs.com/yoyoma0355/p/9565544.html

你可能感兴趣的文章
MFC CEdit改变字体大小的方法
查看>>
java 中文数字排序方法
查看>>
centos 关于防火墙的命令
查看>>
openstack 源码分析
查看>>
idea 使用maven plugin tomcat 运行正常,无法进入debug模式
查看>>
Classification Truth Table
查看>>
JVM学习:对象的创建和内存分配
查看>>
C++ 静态变量 全局变量 const
查看>>
vs 高级保存选项的设置
查看>>
Java读取文本指定的某一行内容的方法
查看>>
软件工程敏捷开发04
查看>>
Practise Site Home Sample Page Codes de carte cadeau Amazon | Codes Promo Amazon
查看>>
linux c下输入密码不回显
查看>>
在Linux命令行下发送html格式的邮件
查看>>
说说PHP中foreach引用的一个坑
查看>>
基于express框架的应用程序骨架生成器介绍
查看>>
Spring学习11-Spring使用proxool连接池 管理数据源
查看>>
2016第6周五
查看>>
ASP.NET 免费开源控件
查看>>
面向对象葵花宝典阅读思维导图(二)
查看>>