Testing code that uses a database is challenging — you need realistic data behavior without flakiness or slowness. Approaches include test databases, in-memory databases, transactions/rollback, and mocking the data layer — each with trade-offs.
ਚੁਣੌਤੀ
Database-interacting code needs testing, but databases bring challenges:
→ real DB → realistic but SLOWER; needs SETUP and CLEANUP (state between tests)
→ shared state → tests can interfere (order dependence, flakiness)
→ mocking the DB → fast but may not catch real query/integration bugs
→ Choose an approach balancing realism, speed, and isolation.
