최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 quality 의 inspect 보다 build-in". 매 modern QC 의 shift-left — 매 unit test, type checking, static analysis, contract test, e2e — 매 layer 의 different bug class catch. 2026 의 LLM-augmented test generation + property-based testing 의 mainstream.
매 핵심
매 Test pyramid (2026 update)
Unit (60-70%): pure function, fast, isolated.
Integration (15-25%): module + DB/queue, real dependencies via testcontainers.
E2E (5-10%): full user journey, Playwright/Cypress.
// Consumer side
constprovider=newPact({consumer:'Web',provider:'OrdersAPI'});awaitprovider.addInteraction({state:'order 123 exists',uponReceiving:'a request for order 123',withRequest:{method:'GET',path:'/orders/123'},willRespondWith:{status: 200,body:{id:'123',total: 99.0},},});// Generates pact.json — provider verifies against it in CI
Mutation testing (Stryker)
// stryker.conf.js
exportdefault{testRunner:'vitest',mutate:['src/**/*.ts'],thresholds:{high:80,low:60,break:50},};// Mutates code (a + b → a - b) and checks if tests catch it
// Surviving mutants = weak tests
LLM-assisted test generation (2026 pattern)
// CI step: claude-code generates edge cases
// $ claude test-gen src/parser.ts --output tests/parser.gen.test.ts
// Then human review before merge — never blind-trust
언제: generate edge cases, suggest mutation-resistant assertions, identify untested branches.
언제 X: never let LLM write the assertion AND implementation — confirmation bias.