InterviewSolution
| 1. |
What Are The Tests That You Can Perform On An Api? Are These Tests Related To Each Other In Some Way? |
|
Answer» API can be VERIFIED to know whether it’s UPDATING any data structure or is not performing this task. This is actually the most COMMON test that can SIMPLY be performed. All the returned values from an API can be checked and this is another common test. In addition to this, sometimes an API triggers another one without intimation and this is another test that NEEDS to be performed. All these tasks are completely different and they have no applications with each other. However, a few steps are common in them. API can be verified to know whether it’s updating any data structure or is not performing this task. This is actually the most common test that can simply be performed. All the returned values from an API can be checked and this is another common test. In addition to this, sometimes an API triggers another one without intimation and this is another test that needs to be performed. All these tasks are completely different and they have no applications with each other. However, a few steps are common in them. |
|