testing

Writes and reviews Flutter/Dart tests. Use when writing unit tests, widget tests, or reviewing existing tests for correctness, structure, and naming conventions.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "testing" with this command: npx skills add evanca/flutter-ai-rules/evanca-flutter-ai-rules-testing

Testing Skill

This skill defines how to write effective, meaningful Flutter and Dart tests.


1. Test Validity

Before writing or accepting a test, ask:

"Can this test actually fail if the real code is broken?"

  • Avoid tests that only confirm mocked/fake behavior that doesn't reflect real logic.
  • Avoid tests that confirm behavior guaranteed by the language, the standard library, or trivially obvious code that cannot fail unless the environment is broken.
  • Every test should be capable of catching a real regression.

2. Structure

Always use group() in test files — even when there is only one test. Name the group after the class under test:

group('Counter', () {
  test('value should start at 0', () {
    final counter = Counter();
    expect(counter.value, 0);
  });
});

3. Naming

Name test cases using "should" to clearly describe the expected behavior:

test('should emit updated list when item is added', () { ... });
test('should throw ArgumentError when input is negative', () { ... });

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

riverpod

No summary provided by upstream source.

Repository SourceNeeds Review
General

effective-dart

No summary provided by upstream source.

Repository SourceNeeds Review
General

bloc

No summary provided by upstream source.

Repository SourceNeeds Review
General

firebase-crashlytics

No summary provided by upstream source.

Repository SourceNeeds Review