赞
踩
结果中的特定属性或值与预期做对比,如果一致,则用例通过,如果不一致,断言失败,用例失败。断言,是一个完整测试用例所不可或缺的一部分,没有断言的测试用例仅仅是测试步骤。
- pm.test("Status code is 200", function () {
- pm.response.to.have.status(200);
- });
解释:
- pm.test("Body matches string", function () {
- pm.expect(pm.response.text()).to.include("string_you_want_to_search");
- });
- pm.test("Your test name", function () {
- var jsonData = pm.response.json();
- pm.expect(jsonData.value).to.eql(100);
- });
- pm.test("Content-Type is present", function () {
- pm.response.to.have.header("Content-Type");
- });
1.对响应头里中的值(header)进行判断,是否包含对应的属性
- pm.test("验证响应时间小于200ms", function () {
- pm.expect(pm.response.responseTime).to.be.below(200);
- });
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。