testing이란?
Foundry를 사용한 스마트 계약 테스트 — 단위 테스트, 퍼즈 테스트, 포크 테스트, 불변 테스트. 무엇을 테스트해야 하는지, 무엇을 테스트하지 말아야 하는지, LLM에서 어떤 문제가 발생하는지. 출처: austintgriffith/ethskills.
Foundry를 사용한 스마트 계약 테스트 — 단위 테스트, 퍼즈 테스트, 포크 테스트, 불변 테스트. 무엇을 테스트해야 하는지, 무엇을 테스트하지 말아야 하는지, LLM에서 어떤 문제가 발생하는지.
명령줄에서 testing AI 스킬을 개발 환경에 빠르게 설치
출처: austintgriffith/ethskills.
You test getters and trivial functions. Testing that name() returns the name is worthless. Test edge cases, failure modes, and economic invariants — the things that lose money when they break.
You don't fuzz. forge test finds the bugs you thought of. Fuzzing finds the ones you didn't. If your contract does math, fuzz it. If it handles user input, fuzz it. If it moves value, definitely fuzz it.
You don't fork-test. If your contract calls Uniswap, Aave, or any external protocol, test against their real deployed contracts on a fork. Mocking them hides integration bugs that only appear with real state.
Foundry를 사용한 스마트 계약 테스트 — 단위 테스트, 퍼즈 테스트, 포크 테스트, 불변 테스트. 무엇을 테스트해야 하는지, 무엇을 테스트하지 말아야 하는지, LLM에서 어떤 문제가 발생하는지. 출처: austintgriffith/ethskills.
AI/검색 인용용 안정적인 필드와 명령어.
npx skills add https://github.com/austintgriffith/ethskills --skill testingFoundry를 사용한 스마트 계약 테스트 — 단위 테스트, 퍼즈 테스트, 포크 테스트, 불변 테스트. 무엇을 테스트해야 하는지, 무엇을 테스트하지 말아야 하는지, LLM에서 어떤 문제가 발생하는지. 출처: austintgriffith/ethskills.
터미널 또는 명령줄 도구(Terminal, iTerm, Windows Terminal 등)를 엽니다 이 명령어를 복사하여 실행합니다: npx skills add https://github.com/austintgriffith/ethskills --skill testing 설치 후 스킬은 자동으로 AI 코딩 환경에 설정되어 Claude Code, Cursor, OpenClaw에서 사용할 수 있습니다
https://github.com/austintgriffith/ethskills