API (Application Programming Interface) testing is a type of software testing that aims to determine whether the APIs that are developed meet expectations when it comes to functionality, performance, reliability and security for an application.
APIs are mechanisms that enable two software components to communicate with each other using a set of definitions and protocols.
API testing flow is quite simple with three main steps:
- Send the request with necessary input data.
- Get the response having output data.
- Verify that the response returned as expected in the requirement.
Comments
Post a Comment