Skip to content

Commit 93fd0e0

Browse files
committed
Project: Added a claude command
1 parent dc78424 commit 93fd0e0

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Improve test coverage for this PR's changed code.
2+
3+
Follow these steps in order:
4+
5+
1. **Identify PR scope:** Run `git diff main...HEAD --name-only` to find all files changed in this branch. These are the only files you should care about. Exclude anything in the `legacy` namespace entirely.
6+
7+
2. **Understand what changed:** Read the changed files and build a mental model of the new/modified features, public APIs, branching logic, and edge cases introduced by this PR.
8+
9+
3. **Run coverage baseline:** Build and run the coverage tool in `tests/coverage` to generate a report. Parse the output to extract per-file and per-function coverage percentages for the changed files only.
10+
11+
4. **Prioritize gaps:** From the changed files, rank uncovered or under-covered areas by size and importance:
12+
- Prefer covering entire uncovered functions/methods over chasing individual branch misses
13+
- Prefer public API surface over internal helpers
14+
- Prefer complex branching logic and error handling over straight-line code
15+
- Skip trivial getters/setters and boilerplate
16+
17+
5. **Write tests:** Add or extend tests targeting the largest coverage gaps first. For each test:
18+
- Place it in the appropriate existing test file/directory following the project's conventions
19+
- Name it descriptively for what behavior it verifies
20+
- Cover the happy path, then key error/edge cases
21+
- Stop working on a file once it reaches ~85% coverage — do not chase 100%
22+
23+
6. **Verify:** Re-run the coverage tool after writing tests. Confirm that the changed files are at or near 85%. If any file is still significantly below, do another pass on the biggest remaining gap only.
24+
25+
**Constraints:**
26+
- Do NOT modify any source code — only add/edit test files
27+
- Do NOT touch or add tests for anything in the `legacy` namespace
28+
- Do NOT add tests for code outside the PR's changed files
29+
- Target 85% coverage on changed files, not the whole repo

0 commit comments

Comments
 (0)