Το Android υποστηρίζει διάφορους τύπους δοκιμών — unit tests (λογική, εκτελούνται στο JVM), instrumented tests (εκτελούνται σε συσκευή/εξομοιωτή, περιλαμβάνοντας UI tests με Espresso) και άλλα. Μια καλή στρατηγική δοκιμών βελτιώνει την αξιοπιστία και την εμπιστοσύνη.
Τύποι δοκιμών
UNIT TESTS (local, on the JVM) → test logic (ViewModels, repositories, utilities):
→ fast (no device); use JUnit, Mockito/MockK (mocking), no Android framework needed
→ for business logic, data processing, ViewModels
INSTRUMENTED TESTS (on a device/emulator) → test code needing the Android framework:
→ UI tests (ESPRESSO — interact with and verify the UI), integration tests
→ slower (real device/emulator) but test real Android behavior
