python 自定义断言

Posted xiaozeng6

tags:

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


     #判断返回结果是否包含预期结果
    def is_contain(self,str_one,str_two):#判断str_one是否包含于str_two
        flag=None
        try:
            str_one.index(str_two)>1
        except:
            print(PASS!)
            flag=False
        return flag

     #判断两个字典是否相等
    def is_equal_dict(self,dict_one,dict_two):#判断两个字典值是否相等

        if isinstance(dict_one,dict_two):
            print(haha)
            dict_one =json.loads(dict_one)#str转成dict
            print(dict_two)
        else:
            print(oo)
        print(operator.eq(dict_one,dict_two))

 

 

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

QT: 自定义断言;

如何在 FluentAssertions 的集合断言中重用自定义对象断言

ruby MiniTest:断言自定义异常(ERROR)

将枚举与自定义 Fluent 断言等效步骤进行比较

使用C#为MSTest测试项目实现自定义断言

如何为自定义 XCTest 断言编写自动化测试?