Coverage- und Gas-Reports
Qualitätsmetriken
Coverage- und Gas-Reports ist eine kostenlose Web3 & DApp Development Fundamentals-Lektion auf CoddyKit. Dies ist Lektion 3 von 4. Du kannst die komplette Lektion unten kostenlos lesen – dann übst du sie direkt im Browser mit einem integrierten Code-Editor und einem KI-Tutor rund um die Uhr. Sie ist Teil des Web3 & DApp Development Fundamentals-Lernpfads, und dein Fortschritt wird über Web und CoddyKit-App synchronisiert. Der Web3 & DApp Development Fundamentals-Kurs umfasst insgesamt 4 Lektionen.
Teile dieser Lektion wurden noch nicht übersetzt und werden auf Englisch angezeigt.
Quality Metrics
Two metrics help judge contract quality:
- Code coverage — how much of your Solidity is exercised by tests.
- Gas usage — how expensive your functions are to call.
Both are available as Hardhat plugins, and the Toolbox includes the gas reporter.
What Coverage Tells You
Coverage measures the percentage of statements, branches, and functions touched by your tests.
- Low coverage means untested code paths — potential hidden bugs.
- 100% coverage does not guarantee correctness, but gaps are red flags.
Installing Coverage
The solidity-coverage plugin instruments your contracts and reports coverage:
npm install --save-dev solidity-coverageThen require it in your config:
require("solidity-coverage");npm install --save-dev solidity-coverage
// in hardhat.config.js:
require("solidity-coverage");Running Coverage
Run the coverage task to execute your tests with instrumentation:
npx hardhat coverageIt prints a table per file and writes an HTML report to coverage/ you can open in a browser.
npx hardhat coverageReading a Coverage Table
The report has four columns:
- % Stmts — statements executed.
- % Branch — if/else branches taken.
- % Funcs — functions called.
- % Lines — lines reached.
Branch coverage is often the hardest to fill — make sure both sides of every condition are tested.
The Gas Reporter
The hardhat-gas-reporter (in the Toolbox) prints gas costs for each function call during tests. Enable it in config:
module.exports = {
gasReporter: {
enabled: true,
},
};It outputs a table after npx hardhat test.
module.exports = {
gasReporter: {
enabled: true,
},
};Reading the Gas Table
The gas report shows, per method:
- Min / Max / Avg gas across calls.
- # calls — how often it ran in tests.
- Deployment cost for each contract.
Functions that vary widely between min and max often have conditional logic worth examining.
Pricing in Fiat
The gas reporter can show estimated costs in real money by fetching a gas price and token price:
gasReporter: {
enabled: true,
currency: "USD",
gasPrice: 30,
}This helps you communicate the real cost of operations to stakeholders.
gasReporter: {
enabled: true,
currency: "USD",
gasPrice: 30,
}Toggling with Env Vars
Coverage and gas reporting slow tests down, so gate them behind an environment variable:
gasReporter: {
enabled: process.env.REPORT_GAS === "true",
}Run REPORT_GAS=true npx hardhat test only when you need the report.
gasReporter: {
enabled: process.env.REPORT_GAS === "true",
}Using Metrics in CI
In continuous integration you can:
- Fail the build if coverage drops below a threshold.
- Comment gas diffs on pull requests.
These guardrails keep quality from silently regressing as the codebase grows.
Outputting to a File
The gas reporter can write its table to a file for archiving or diffing in CI:
gasReporter: {
enabled: true,
outputFile: "gas-report.txt",
noColors: true,
}Disabling colors keeps the file readable. Coverage similarly produces a coverage/ HTML report and an lcov.info file.
gasReporter: {
enabled: true,
outputFile: "gas-report.txt",
noColors: true,
}Quick Check
Test your understanding of coverage and gas reports.
Recap
You learned to measure test and gas quality.
solidity-coveragereports statement, branch, function, and line coverage vianpx hardhat coverage.- Branch coverage best reveals untested paths.
- The gas reporter (in the Toolbox) prints per-method gas and deployment costs.
- It can price calls in fiat and be toggled with an env var.
- Enforce thresholds in CI to prevent regressions.
Häufig gestellte Fragen
Ist die Lektion „Coverage- und Gas-Reports“ kostenlos?
Ja — der vollständige Text von „Coverage- und Gas-Reports“ ist hier im Web kostenlos zu lesen. Um sie interaktiv zu üben (integrierter Code-Editor und 24/7 KI-Tutor) und den Rest des Web3 & DApp Development Fundamentals-Kurses freizuschalten, upgrade auf CoddyKit PRO. Der Web3 & DApp Development Fundamentals-Kurs umfasst insgesamt 4 Lektionen.
Was lerne ich in „Coverage- und Gas-Reports“?
Qualitätsmetriken Du übst Web3 & DApp Development Fundamentals mit praktischem Code, den du direkt im Browser ausführst, und ein 24/7 KI-Tutor beantwortet deine Fragen während du die Lektion bearbeitest.
Brauche ich Erfahrung, um Web3 & DApp Development Fundamentals zu starten?
Keine Vorkenntnisse erforderlich. Web3 & DApp Development Fundamentals auf CoddyKit ist für Anfänger bis fortgeschrittene Lernende strukturiert, sodass du hier starten oder von Anfang an beginnen und in deinem eigenen Tempo voranschreiten kannst. Dies ist Lektion 3 von 4.
Wie lange dauert die Lektion „Coverage- und Gas-Reports“?
Die meisten CoddyKit-Lektionen dauern etwa 5–10 Minuten. Jede ist kompakt und interaktiv, sodass du stetig Fortschritte machst und genau dort weitermachst, wo du aufgehört hast – im Web und in der App.
Kann ich in dieser Web3 & DApp Development Fundamentals-Lektion Code schreiben und ausführen?
Ja. Jede Web3 & DApp Development Fundamentals-Lektion enthält einen integrierten Code-Editor, sodass du echten Code direkt in deinem Browser schreibst und ausführst und sofort KI-Feedback erhältst — ohne lokale Einrichtung erforderlich.
Alle Lektionen in diesem Kurs
- Tests schreiben
- Reverts und Events testen
- Coverage- und Gas-Reports
- Fixtures