> ## Documentation Index
> Fetch the complete documentation index at: https://docs.myaione.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Coverage

> See how much of your code the test suite exercises. Coverage is collected when you run the suite and lands here, so you can track what's verified and what isn't.

The **Coverage** tab shows how much of your code the test suite actually exercises. Coverage is collected as part of a test run — so until you've run the suite, there's nothing to show here yet.

<img src="https://mintcdn.com/myaione/D-_4uF28O_nBgr6d/images/Screenshot-2026-06-22-at-8.18.59-PM.png?fit=max&auto=format&n=D-_4uF28O_nBgr6d&q=85&s=378647b84c217e59f75538c92ac39371" alt="Screenshot 2026 06 22 At 8 18 59 PM" width="3420" height="1902" data-path="images/Screenshot-2026-06-22-at-8.18.59-PM.png" />

## Collecting coverage

When your test framework is configured but the suite hasn't run, Coverage shows a **No coverage collected yet** state. Click **Run tests** to execute the suite with coverage — progress streams live in the [Tests](/test-center/tests) tab, and once the run completes, your coverage results land here.

<Info>
  Coverage and test results come from the same run. Running the suite populates the Tests view with pass/fail results and this view with coverage at the same time.
</Info>

## Generating more tests

If you'd like broader coverage before running, generate additional tests first with the **Generate more** link, then run the suite. More tests mean more of your code is exercised, which is reflected in the coverage collected here.

<Tip>
  Coverage is most useful as a trend — run the suite after meaningful changes to see whether newly added code is being verified, not just the code you started with.
</Tip>
