원클릭으로
generate-tests
Generate tests following project conventions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate tests following project conventions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Verify architectural consistency and dependency rules in EagleEye
Validate EagleEye documentation matches actual implementation
Determine minimum requirements to consume the EagleEye library
Generate release notes and prepare the next release for EagleEye
Review an EagleEye pull request checking architecture, tests, docs, and completeness
Run the EagleEye build and tests
| name | generate-tests |
| description | Generate tests following project conventions |
| trigger | when the user asks to write tests, review test files, or generate new test cases |
When invoked:
Detect testing framework:
pubspec.yaml dev_dependencies: for test (Dart package:test).flutter_test is found, classify as Flutter widget tests.package:test (^1.31.1).Analyze existing tests in test/:
test(), group(), expect() patterns.*_test.dart suffix).lib/.Follow current naming conventions:
<name>_test.dart matching <name>.dart in lib/.group() for logical grouping.test() for individual test cases.expect(actual, matcher) for assertions.Generate unit tests for:
lib/.Generate integration tests when applicable:
Ensure generated tests use the project's assertion style and test architecture:
package:test conventions.