我最近正在尝试使用邮递员测试脚本来测试 API。我发现具有挑战性的一件事是测试失败时的预期和实际测试结果。我应该如何实现它。我尝试使用 console.log 但如果测试用例失败则不会打印。如何为所有测试使用单一功能实现更通用的解决方案。
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
console.log("TestCase: Status Code should be 200"+",
Expected: "+"Response code should be 200"+", Actual: "+pm.response.code);
});