Help us improve
Share bugs, ideas, or general feedback.
From vanguard-frontier-agentic
Statically reviews .NET test suites for false confidence: assertion-free tests, over-mocking, coverage theater, weak isolation, flaky patterns, and missing negative/security tests across xUnit, NUnit, MSTest.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vanguard-frontier-agentic:dotnet-testing-quality-reviewThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill statically reviews .NET test suites for false confidence — tests that pass but prove nothing. A green suite only protects a release if its tests assert real behavior, exercise the system under test rather than the mocks, isolate from each other, run as part of the CI test set, and cover the negative and security paths that defects actually hide in. The review catches assertion-free t...
Share bugs, ideas, or general feedback.
This skill statically reviews .NET test suites for false confidence — tests that pass but prove nothing. A green suite only protects a release if its tests assert real behavior, exercise the system under test rather than the mocks, isolate from each other, run as part of the CI test set, and cover the negative and security paths that defects actually hide in. The review catches assertion-free tests, tautological tests that assert a mock's own configured behavior, over-mocking, coverage theater, integration tests that share mutable state, test projects excluded from the CI run, and missing unauthorized/forbidden/invalid-input tests across xUnit, NUnit, and MSTest.
WebApplicationFactory or Testcontainers harnesses, or coverage configuration.Assert, no Should, no Verify, no expected-exception attribute) as a defect; it proves nothing and inflates the coverage number.[Skip]/[Ignore]/[Fact(Skip=...)] on a failing test as the fix; never recommend disabling a failing gate as the fix.confirmed (test source provided), inference (partial source), assumption (source absent), or unknown.Load these only when needed:
Return, at minimum:
npx claudepluginhub raishin/vanguard-frontier-agentic --plugin vanguard-frontier-agenticReviews test suites for assertion quality to detect coverage theater where high line/branch coverage masks weak tests that wouldn't catch regressions.
Reviews test suites for coverage, isolation, mock usage, naming conventions, and completeness using checklist for 80%+ coverage, AAA pattern, mock correctness, type safety, and best practices.
Detects test smells like overmocking, flaky tests, fragile tests, poor assertions, and coverage issues. Analyzes test correctness, reliability, maintainability when reviewing or improving tests.