We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1
1.
1 Getting started with tests
To try writing a test script for the first time, open a request in your Postman app and open the Tests tab. Enter the following JavaScript code: pm.test("Status code is 200", function () { pm.response.to.have.status(200); }); This code uses the pm library to run the test method. The text string will appear in the test output. The function inside the test represents an assertion. Postman tests can use Chai Assertion Library BDD syntax, which provides options to optimize how readable your tests are to you and your collaborators. In this case, the code uses BDD chains to.have to express the assertion. This test checks the response code returned by the API. If the response code is 200, the test will pass, otherwise it will fail. Click Send and check the Test Results output in the response area.
Fábrica de Software III – Plano de Processo Página 1 de 1