Skip to content

Commit 5a07425

Browse files
Minor skills cleanup
1 parent e735ccb commit 5a07425

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

  • .claude/skills

.claude/skills/migrate-groovy-to-java/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ TableTest usage
5252

5353
Mixed eligibility:
5454
- Prefer combining `@TableTest` + `@MethodSource` on one `@ParameterizedTest` when only some cases are complex.
55-
- Use `@MethodSource`-only only when tabular representation is not practical for the test.
55+
- Use `@MethodSource` only when tabular representation is not practical for the test.
5656

5757
Do NOT use @TableTest when:
5858
- Majority of rows require complex objects or custom converters.

.claude/skills/migrate-junit-source-to-tabletest/SKILL.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Cleanup:
6464

6565
Mixed eligibility:
6666
- Prefer combining `@TableTest` + `@MethodSource` on one `@ParameterizedTest` when only some cases are complex.
67-
- Use `@MethodSource`-only only when tabular representation is not practical for the test.
67+
- Use `@MethodSource` only when tabular representation is not practical for the test.
6868

6969
Do NOT convert when:
7070
- Most rows require complex builders/mocks.
@@ -73,7 +73,3 @@ Do NOT convert when:
7373
Test command (exact):
7474
./gradlew :path:to:module:test --rerun-tasks 2>&1 | tail -20
7575
- If BUILD FAILED: cat path/to/module/build/test-results/test/TEST-*.xml
76-
77-
Never:
78-
- --info
79-
- extra gradle runs just to “confirm”

0 commit comments

Comments
 (0)