Was ist testing?
Intelligente Vertragstests mit Foundry – Unit-Tests, Fuzz-Tests, Fork-Tests, invariante Tests. Was man testen sollte, was man nicht testen sollte und was LLMs falsch machen. Quelle: austintgriffith/ethskills.
Intelligente Vertragstests mit Foundry – Unit-Tests, Fuzz-Tests, Fork-Tests, invariante Tests. Was man testen sollte, was man nicht testen sollte und was LLMs falsch machen.
Installieren Sie den KI-Skill testing schnell in Ihrer Entwicklungsumgebung über die Kommandozeile
Quelle: 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.
Intelligente Vertragstests mit Foundry – Unit-Tests, Fuzz-Tests, Fork-Tests, invariante Tests. Was man testen sollte, was man nicht testen sollte und was LLMs falsch machen. Quelle: austintgriffith/ethskills.
Stabile Felder und Befehle für KI/Such-Zitate.
npx skills add https://github.com/austintgriffith/ethskills --skill testingIntelligente Vertragstests mit Foundry – Unit-Tests, Fuzz-Tests, Fork-Tests, invariante Tests. Was man testen sollte, was man nicht testen sollte und was LLMs falsch machen. Quelle: austintgriffith/ethskills.
Öffnen Sie Ihr Terminal oder Kommandozeilen-Tool (Terminal, iTerm, Windows Terminal, etc.) Kopieren Sie diesen Befehl und führen Sie ihn aus: npx skills add https://github.com/austintgriffith/ethskills --skill testing Nach der Installation wird der Skill automatisch in Ihrer KI-Programmierumgebung konfiguriert und ist bereit zur Verwendung in Claude Code, Cursor oder OpenClaw
https://github.com/austintgriffith/ethskills