Concept Flow - TestClient basics
Create FastAPI app
Import TestClient
Initialize TestClient with app
Make HTTP request (GET/POST/etc)
Receive response object
Check response status and data
Assert expected results
Test ends
This flow shows how to create a FastAPI app, use TestClient to send requests, get responses, and check results.