Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

unit-test-authoring-test-plans单元测试编写测试计划

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

188

周安装

8

GitHub Stars

5

下载量

66
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:unit-test-authoring-test-plans(单元测试编写测试计划)
来源仓库:https://github.com/wizeline/sdlc-agents
仓库路径:skills/unit-test-authoring-test-plans
安装命令:
npx skills add https://github.com/wizeline/sdlc-agents --skill unit-test-authoring-test-plans
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wizeline/sdlc-agents --skill unit-test-authoring-test-plans

简介

该技能辅助编写结构化测试计划文档。

  • 适用于项目管理与质量保证流程规范化。
  • 包含用例设计原则、风险评估与资源分配指引。
  • 计划需结合实际项目特点迭代完善。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • unit-test-authoring-test-plans 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Read references/index.md before executing any step.


Usage

Apply this skill when:

  • A formal test plan document is needed for a sprint, feature, or module
  • Stakeholders require a human-readable summary of testing strategy
  • QA team needs a structured sign-off document
  • An audit or compliance process requires test documentation
  • A developer wants a Markdown test plan alongside their test file

Test Plan Document Structure

Every test plan must include these sections:

1. Cover Page / Header

Test Plan: <Feature or Module Name>
Version: 1.0
Date: <date>
Author: TestForge AI (test-unit-gen-agent)
Status: Draft | Review | Approved

2. Scope

  • What is being tested (module, feature, user story reference)
  • What is explicitly OUT of scope (integration tests, performance tests, etc.)
  • Target environments (local dev, CI, staging)

3. Test Objectives

Written as measurable goals:

  • Achieve >= 80% line coverage for
  • Verify all acceptance criteria in user story US-042
  • Validate error handling for all invalid input types

4. Test Strategy

ApproachDescription
Unit TestingIsolated function/method testing with mocked dependencies
Framework<pytest / Jest / JUnit 5 / xUnit>
Coverage Tool<coverage.py / Istanbul / JaCoCo>
Execution<manual / CI via GitHub Actions / Jenkins>
BDD Style<Yes/No> — Gherkin scenarios used for requirements-driven tests

5. Test Cases Summary Table

| ID     | Test Name                                         | Category  | Priority | Status  |
|--------|---------------------------------------------------|-----------|----------|---------|
| TC-001 | test_login_when_valid_credentials_expects_token   | Happy     | HIGH     | Planned |
| TC-002 | test_login_when_invalid_password_expects_401      | Error     | HIGH     | Planned |
| TC-003 | test_login_when_account_locked_expects_403        | Error     | HIGH     | Planned |
| TC-004 | test_login_when_empty_username_expects_bad_request| Boundary  | MEDIUM   | Planned |

6. Coverage Targets

MetricTargetCurrentGap
Line Coverage80%64%16%
Branch Coverage75%51%24%
Function Coverage90%78%12%

7. Dependencies & Risks

DependencyRiskMitigation
External payment APITests may fail if mock schema changesPin mock responses to spec version
Database schemaSchema changes break fixture dataUse factory-based fixtures, not hard-coded SQL

8. Entry & Exit Criteria

Entry Criteria (tests can begin):

  • Source code or requirements are available
  • Test environment is configured
  • All dependencies are mockable

Exit Criteria (testing is complete):

  • All HIGH priority test cases pass
  • Coverage targets are met
  • Test review agent verdict: APPROVED or APPROVED_WITH_NOTES
  • No CRITICAL or HIGH severity defects outstanding

9. Defect Management

  • Defects found during test execution logged in: <Jira / GitHub Issues / Linear>
  • Severity levels: CRITICAL | HIGH | MEDIUM | LOW
  • Blocking defects must be resolved before CI gate passes

10. Approvals

| Role         | Name | Signature | Date |
|--------------|------|-----------|------|
| Author       |      |           |      |
| Tech Lead    |      |           |      |
| QA Lead      |      |           |      |

BDD / Gherkin Test Cases (when requirements-driven)

When the input includes user stories or acceptance criteria, supplement the test plan with Gherkin scenarios:

Feature: User Login

  Scenario: Successful login with valid credentials
    Given a registered user with username "alice" and password "secret"
    When the user submits the login form
    Then the system returns a JWT token
    And the response status is 200

  Scenario: Login fails with wrong password
    Given a registered user with username "alice"
    When the user submits login with password "wrong"
    Then the response status is 401
    And the error message is "Invalid credentials"

Output Formats

Markdown (.md)

  • Use this for developer-facing documentation
  • Stored alongside test files in the repository
  • Rendered in GitHub/GitLab automatically

Word Document (.docx)

  • Use this for formal QA sign-off, audits, or stakeholder review
  • Use the docx skill to generate the.docx file from the Markdown content
  • Formatting: professional heading styles, page numbers, company letterhead

Quality Checklist

Before delivering the test plan:

  • All test cases from the generated test suite appear in Section 5
  • Coverage targets are specific and measurable (not just "high")
  • Entry/exit criteria are unambiguous
  • Test case IDs are unique and traceable to requirements where possible
  • Document version and date are current
  • Status column reflects actual state (Planned / In Progress / Pass / Fail)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.43%
按下载量换算24

Claude

30.21%
按下载量换算20

Cursor

16.85%
按下载量换算11

Gemini CLI

9.13%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills