Flutter Guideline: Testing — Mock dependencies. Description: Isolate tests. Do: Mockito or mocktail. Don't: Real dependencies in tests. Good Example: when(mock.method()).thenReturn(). Bad Example: Real API calls in tests. Severity: Medium. Docs: .