跳到主要内容
知仓学习社ZHICANG

test-driven-development

Drives implementation by writing a failing test first, then the smallest code that passes it. Use this before writing implementation code for any fe…

不碰外部(只输出文字)无严重或高危命中cbrock84/headcount

它会碰到什么

扫了多少1 个文本文件,3 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Test-driven development

The loop

  1. Red — write one test that fails for the right reason. Run it. A test that passes immediately

is testing nothing; a test that errors instead of failing is testing the wrong thing.

  1. Green — the smallest change that makes it pass. Ugly is fine here.
  2. Refactor — clean up with the test green. If it goes red, you changed behavior, not structure.

Never skip step 1. Writing the test after the code produces a test shaped to the implementation,

which is the one shape that cannot catch the implementation being wrong.

What to test

Test behavior at the boundary a caller actually depends on. For each unit ask: if this broke

silently, who notices and how? If the answer is nobody, delete the code rather than test it.

  • Test: branching logic, boundary conditions, error paths, anything with a past bug, contracts

between modules.

  • Do not test: getters, framework behavior, private helpers reachable only through a public path

already covered, exact wording of log lines.

Bugs

Every bug gets a failing test before the fix, reproducing it at the smallest scope that shows it.

That test is the proof the bug existed and the guard that it stays fixed. A fix without one is a

claim.

Rules

  • One behavior per test. A test asserting five things tells you almost nothing when it fails.
  • The test name states the behavior, not the method: rejects_expired_token, not test_auth.
  • Never weaken an assertion to get green. If a test is inconvenient, the design is telling you

something.

  • Never mock what you own — mock the network and the clock, not your own modules. Mocking your own

code tests the mock.

Never

  • Write the test after the code and call it test-driven. You will test what you built rather than what was required.
  • Skip watching the test fail. A test that has never failed proves nothing.
  • Delete or skip a failing test to unblock a release. Fix it, or revert what broke it.
  • Treat a coverage number as the goal. It counts lines executed, not behavior pinned down.

Return contract

Report the tests added, what each pins down, what is deliberately untested and why, and the actual

command you ran with its output. "Tests pass" without the command output is not a result.

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。