您的位置: 首页 > 文章 > pytest+assert使用方法 pytest+assert使用方法 分类: 文章 • 2025-01-13 17:29:22 常用方法: assert xx 判断xx为真 assert not xx 判断xx不为真 assert a in b 判断b包含a assert a == b 判断a等于b assert a != b 判断a不等于b demo: