관리 메뉴

ITGeine

Postman test script 본문

테스트 자동화

Postman test script

Nick9 2019. 11. 5. 16:38

1. empty array 여부 확인

-

{

"resultData": [],

"errorCode": 0

}

pm.expect(jsonData.resultData[0]).to.be.null;

- 이 경우 undefined to be null 에러가 떨어진다.

pm.expect(jsonData.resultData[0]).not.to.have.property('dd',pm.environment.get("dd"));

- 이 경우 Target cannot be null or undefined 에러가 떨어진다.

 

아래와 같이 array의 length가 0인지 확인하면 된다.

pm.test('Assert array is empty', function(){
    pm.expect(jsonData.resultData.length).to.be.eql(0);
});

 

'테스트 자동화' 카테고리의 다른 글

Concolic Testing  (0) 2018.02.11