openswiftui-test-authoring
GitHub指导 OpenSwiftUI 测试文件的编写与审查,遵循共享约定并按类型(单元、兼容性等)调用对应指南。
Trigger Scenarios
Install
npx skills add OpenSwiftUIProject/OpenSwiftUI --skill openswiftui-test-authoring -g -y
SKILL.md
Frontmatter
{
"name": "openswiftui-test-authoring",
"description": "Route OpenSwiftUI test authoring and review work to the appropriate test guide while applying shared test-file conventions. Use for unit, compatibility, symbol-dual, or UI tests."
}
OpenSwiftUI Test Authoring
Shared Conventions
-
Follow the organization and naming of the nearest tests in the same target.
-
Sort import declarations alphabetically by imported module name, preserving any attributes attached to each declaration.
-
Start each new Swift test file with this header, substituting the actual file name and the actual test target name:
// // <FileName.swift> // <TestTargetName>Leave one blank line after the target name. Do not add a closing decorative
//line, and do not copy a target name from an unrelated example.
Test-Type Guides
Read only the guide that matches the requested test type:
- Unit tests: unit-tests.md
- Compatibility tests: compatibility-tests.md
- Symbol-dual tests: symbol-dual-tests.md
- UI tests: ui-tests.md
Version History
- 0.20.1 Current 2026-08-28 11:47


