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

huangapple go评论52阅读模式
英文:

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

问题

以下是翻译好的内容:

"我正在使用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

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

英文:

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

huangapple
  • 本文由 发表于 2023年8月10日 11:59:26
  • 转载请务必保留本文链接:https://go.coder-hub.com/76872576.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定