Verify GET /users API returns correct user data
Preconditions (2)
Step 1: Send a GET request to http://api.example.com/users/1
Step 2: Check the HTTP status code of the response
Step 3: Check the response body contains user data with ID 1 and name 'John Doe'
✅ Expected Result: Response status code is 200 and response body JSON contains {'id': 1, 'name': 'John Doe'}