Testing code sing nggunakake database iku tantangan — sampeyan butuh perilaku data sing real tanpa flakiness utawa alon. Pendekatan kalebu test databases, in-memory databases, transactions/rollback, lan mocking the data layer — saben-saben duwe trade-offs.
Tantangane
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.
