pytest-05(常用断言)

pytest里面断言实际上就是python里面的assert断言方法,常用的有以下几种

1、assert  xx  判断xx为真

2、assert  not xx 判断xx不为真

3、assert a in b  判断b包含a

4、assert a==b  判断a等于b

5、assert a!=b  判断a不等于b

原文地址:https://www.cnblogs.com/xdg920/p/13267598.html