Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

testing测试

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

921

周安装

38

GitHub Stars

16

下载量

301
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill testing

简介

testing 用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合让 Agent 编写单元测试、
  • 端到端测试、测试计划或根据失败日志定位问题。
  • 使用时需要确认项目测试框架、运行命令和夹具数据, 避免为了通过测试而改坏真实逻辑。testing 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Testing

A disciplined approach to verifying that software behaves correctly, remains stable under change, and communicates intent to future developers. Good tests act as living documentation, a safety net for refactoring, and a design feedback mechanism.

This skill covers universal testing concepts that apply regardless of language, framework, or tooling.

When to Use

  • Designing a test strategy for a new project or feature
  • Deciding what level of testing (unit, integration, e2e) a piece of code needs
  • Evaluating whether existing tests are providing value or creating drag
  • Applying TDD to drive design decisions
  • Debugging a flaky or brittle test suite
  • Reviewing test code for quality and maintainability

Testing Pyramid

The testing pyramid describes the ideal distribution of tests across three levels. More tests at the base, fewer at the top.

        /  E2E  \           Few, slow, expensive
       /----------\
      / Integration \       Moderate number, moderate speed
     /----------------\
    /    Unit Tests     \   Many, fast, cheap
   /____________________\

Unit Tests (Base)

  • Test a single unit of behavior in isolation (a function, a method, a small class)
  • No I/O, no database, no network, no file system
  • Execute in milliseconds
  • Should form the majority of your test suite (roughly 70%)
  • Fast feedback loop enables rapid iteration

Integration Tests (Middle)

  • Test how multiple units collaborate, or how code interacts with external systems
  • May involve a real database, message queue, or HTTP endpoint
  • Execute in seconds
  • Verify that wiring, configuration, and contracts between components work
  • Roughly 20% of your test suite

End-to-End Tests (Top)

  • Test complete user journeys through the full system
  • Interact with the application as a user would
  • Slowest, most brittle, most expensive to maintain
  • Reserve for critical business paths only
  • Roughly 10% of your test suite

The Ice Cream Cone Antipattern

The inverted pyramid: many e2e tests, few unit tests. Symptoms:

  • Test suite takes hours to run
  • Tests break constantly due to UI changes or timing issues
  • Developers stop running tests locally
  • Feedback loop is too slow to support continuous delivery

Fix: Identify what each e2e test is actually verifying. Push that verification down to the lowest possible level. Most business logic can be tested at the unit level.

Test Design Principles

Arrange-Act-Assert (AAA)

Every test should follow three distinct phases:

  1. Arrange — set up the preconditions and inputs
  2. Act — execute the behavior under test
  3. Assert — verify the expected outcome

Keep each phase clearly separated. If Arrange dominates the test, extract a builder or factory. If Act requires multiple steps, you may be testing too much at once.

One Assertion per Concept

A test should verify one logical concept. This does not mean literally one assert call — asserting multiple properties of a single result is fine. What matters is that the test fails for exactly one reason.

// Good: one concept — "completed order has correct totals"
assert order.subtotal == 100
assert order.tax == 21
assert order.total == 121

// Bad: two unrelated concepts in one test
assert order.total == 121
assert emailService.wasCalled()

Test Naming

Test names should describe the behavior, not the implementation. A good test name answers: "What scenario is being tested, and what is the expected outcome?"

Patterns that work across languages:

  • should_return_zero_when_cart_is_empty
  • rejects_negative_quantities
  • applies_discount_for_premium_customers

Avoid names like testCalculate, test1, or testGetterSetter.

Test Independence and Isolation

Each test must be completely independent of every other test:

  • No shared mutable state between tests
  • No required execution order
  • Each test sets up its own preconditions and cleans up after itself
  • A single failing test should not cascade into other failures

Deterministic Tests

A test must produce the same result every time it runs, regardless of:

  • The current time or date
  • The order of test execution
  • The machine it runs on
  • Network availability
  • Other tests running in parallel

Non-deterministic tests (flaky tests) destroy trust in the test suite and are worse than no tests at all.

FIRST Principles

PrincipleMeaning
FastTests should run in seconds, not minutes. Slow tests don't get run.
IndependentNo test relies on the output of another test.
RepeatableSame result in any environment — local, CI, staging.
Self-validatingPass or fail with no human interpretation required.
TimelyWritten at the right time — ideally before or alongside the production code.

Test-Driven Development (TDD)

TDD is a design discipline where tests are written before production code, following a tight feedback loop.

Red-Green-Refactor Cycle

  1. Red — Write a failing test that describes the desired behavior
  2. Green — Write the simplest production code that makes the test pass
  3. Refactor — Improve the code structure while keeping all tests green

Rules:

  • Never write production code without a failing test
  • Write only enough test to fail (compilation failure counts)
  • Write only enough production code to pass the current failing test

Two Schools of TDD

AspectChicago (Classical)London (Mockist)
VerificationState-basedInteraction-based
DirectionInside-outOutside-in
CollaboratorsReal objectsMocks/stubs
StrengthRefactoring-resilient testsDrives interface design
RiskComplex setup for deep graphsTests coupled to implementation

See TDD Schools reference for detailed comparison and guidance.

When TDD Helps Most

  • Business logic with clear rules and edge cases
  • Algorithm design
  • API contract definition
  • Bug reproduction and fixing (write the failing test first)

When TDD May Not Apply

  • Exploratory prototyping (write tests after you understand the shape)
  • UI layout and styling
  • One-off scripts

Test Doubles

Test doubles replace real dependencies during testing. Each type serves a different purpose.

DoublePurposeVerifies?
DummyFill parameter lists. Never actually used.No
StubProvide canned responses to method calls.No
SpyRecord interactions for later assertion.Yes (after the fact)
MockPre-programmed with expectations. Fails if not called correctly.Yes (inline)
FakeSimplified working implementation (e.g., in-memory repository).No

See Test Doubles reference for detailed guidance on when to use each type.

Key Principle: Mock at Boundaries

Use test doubles at architectural boundaries (ports, external services), not between internal collaborators. Mocking internal classes couples your tests to implementation details and makes refactoring painful.

What to Test / What Not to Test

High Value — Always Test

  • Business rules and domain logic
  • Edge cases, boundary conditions, error paths
  • State transitions and workflows
  • Input validation and sanitization
  • Security-critical paths (authentication, authorization)
  • Data transformations and calculations

Low Value — Usually Skip

  • Trivial getters/setters with no logic
  • Framework-generated code (ORM mappings, routing config)
  • Third-party library internals (test your integration, not their code)
  • Private methods (test through the public API)
  • Logging and telemetry (unless business-critical)

Testing Implementation vs Behavior

Test behavior, not implementation. A good test describes *what* the system does, not *how* it does it internally.

Signs you are testing implementation:

  • Test breaks when you refactor without changing behavior
  • Test asserts the order of internal method calls
  • Test verifies private state rather than public output
  • Renaming an internal class breaks tests for unrelated features

Signs you are testing behavior:

  • Test describes a user-meaningful scenario
  • Test remains green after internal refactoring
  • Test asserts on outputs, side effects, or state changes visible through the public API

Testing Strategies by Layer

Different architectural layers call for different testing approaches. See Testing Strategies reference for detailed guidance.

LayerPrimary Test TypeKey Technique
Domain/Business LogicUnit testsState-based verification, no I/O
Application ServicesUnit + IntegrationTest doubles for infrastructure ports
Data AccessIntegrationReal database (test containers, in-memory)
API EndpointsIntegration + ContractRequest/response validation
UI ComponentsComponent testsInteraction simulation
Full SystemE2E (selective)Critical paths only

Common Antipatterns

AntipatternSymptomsFix
Brittle testsTests break on every refactor even when behavior is unchangedTest behavior through public API, not internal structure
Testing implementationAsserting on method call order, private state, internal wiringAssert on outputs and observable side effects
Slow test suiteTest suite takes 10+ minutes; developers skip running testsPush tests down the pyramid; use test doubles for I/O
Flaky testsTests pass/fail randomly without code changesRemove time dependencies, shared state, and ordering assumptions
Excessive mockingMore mock setup than actual test logic; tests are unreadableUse real collaborators where possible; mock only at boundaries
Test data couplingTests share fixtures and break when shared data changesEach test creates its own data; use builders/factories
Missing error pathsOnly happy path tested; failures discovered in productionExplicitly test error cases, edge cases, and boundary conditions
Commented-out testsFailing tests are disabled rather than fixed or deletedFix the test, or delete it if the behavior changed intentionally
Giant test methodsTests are 50+ lines with multiple acts and assertsSplit into focused tests; extract setup into helpers
No assertionTest executes code but never asserts anythingEvery test must have at least one meaningful assertion

Quality Checklist

Use this checklist when writing or reviewing tests:

  • Behavior-focused: tests describe *what* the system does, not *how*
  • Independent: no test depends on another test's execution or state
  • Deterministic: same result every time, on every machine
  • Fast: unit tests in milliseconds, full suite in under 5 minutes
  • Readable: a new team member can understand the test without reading the implementation
  • Arranged clearly: AAA structure with obvious separation of phases
  • Named descriptively: test name explains the scenario and expected outcome
  • Error paths covered: not just happy path — edge cases and failures are tested
  • Minimal setup: no unnecessary dependencies or fixtures; builders/factories where needed
  • No flakiness: no time-dependent, order-dependent, or environment-dependent tests
  • Appropriate level: tested at the lowest pyramid level that provides confidence
  • Doubles at boundaries: mocks/stubs used at architectural ports, not internal classes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.36%
按下载量换算97

Claude

28.67%
按下载量换算86

Cursor

19.85%
按下载量换算60

Gemini CLI

10.17%
按下载量换算31

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills