Currently all the test cases are kind of Integration test cases where we are connecting with postman get-api .
This method of testing might not be sustainable in the long term and we shouldn't be dependent on any 3rd party entity for performing unit testing .
So , need to instead to introduce Wiremock for stubbing our test cases and replace it with the actual postman get-api calls
Currently all the test cases are kind of Integration test cases where we are connecting with postman get-api .
This method of testing might not be sustainable in the long term and we shouldn't be dependent on any 3rd party entity for performing unit testing .
So , need to instead to introduce
Wiremockfor stubbing our test cases and replace it with the actual postman get-api calls