断言的使用

Posted themost

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了断言的使用相关的知识,希望对你有一定的参考价值。

>>> x = 1
>>> y = 2
>>> assert x == y, "not equals"

Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    assert x == y, "not equals"
AssertionError: not equals
>>> 

 

以上是关于断言的使用的主要内容,如果未能解决你的问题,请参考以下文章

postman测试实例--断言

postman测试实例--断言

Swift编程语言学习1.7——断言

防御式编程之断言assert的使用

GCC优化技巧,真的有用吗?

Java笔记:断言