51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

如何在 Postman 中预期测试失败,如果我有一个未实现的测试用例?

英文:

How to expect an test fail if I have a test case not implemented in Postman?

问题 {#heading}

以下是翻译好的内容:

"我正在使用Postman编写API测试。我打算在尚未实现API时编写一个失败的测试。

我正在此刻编写这个。

pm.test("尚未实现", function () {
pm.expect(true).to.eql(false);
});

在Postman中有类似这样的功能吗?我只想要一个失败的测试。

pm.test("尚未实现", function () {
pm.expect().fail();
});" 英文:

I'm writing API testing using Postman. I plan to write a failed test when I'm not implement the API yet.

I'm writing this at this moment.

pm.test("Not implement yet", function () {
    pm.expect(true).to.eql(false);
});

Is there something like this in Postman? I just want a test to be fail.

pm.test("Not implement yet", function () {
    pm.expect().fail();
});

答案1 {#1}

得分: 1

你可以使用 pm.expect.fail('因为...而失败'); 英文:

You can use pm.expect.fail('This failed because ...');


赞(0)
未经允许不得转载:工具盒子 » 如何在 Postman 中预期测试失败,如果我有一个未实现的测试用例?