python断言的几种方式_我可以在一个Python pytest方法中处理多个断言吗?
通常,我只是让测试在第一个断言时失败。但是,如果您真的想进行多个比较,请比较元组。下面是一个简单的例子:def foo(x):return x + 1def bar(y):return y - 1def test_foo():# some expensive calculationa = foo(10)# another expensive calculationb = bar(10)assert...