Mutation Test

Run mutation tests with cargo-mutants to verify test quality. Reports caught, missed, and timed-out mutants.

nwiizo 3a5f041 705 B Updated

File contents

Run mutation tests on the specified crate (default: ccswarm):

# Install if needed
cargo mutants --version || cargo install cargo-mutants

# List mutants
cargo mutants --list -p $ARGUMENTS | head -50

# Run mutation tests
cargo mutants -p ${1:-ccswarm} --timeout 120 -j 4

# Report results
echo "=== Caught ===" && wc -l mutants.out/caught.txt
echo "=== Missed ===" && cat mutants.out/missed.txt
echo "=== Timeout ===" && wc -l mutants.out/timeout.txt

Focus on missed mutants in business logic - these indicate insufficient test coverage.

nwiizo/ccswarm/tree/main/.agents/skills/mutation-test commit 3a5f041ca7

Frequently asked questions

npx skillmds@latest add nwiizo/mutation-test