Flutter Guideline: Testing — Use widget tests. Description: Test widget behavior. Do: WidgetTester for UI tests. Don't: Unit tests only. Good Example: testWidgets('...' (tester) async {}). Bad Example: Only test() for UI. Severity: Medium. Docs: https://docs.flutter.dev/testing.