# CoveredSequencePoint

> Describes a covered sequence point used by Coverage. For an example of typical usage, see Coverage.GetSequencePointsFor.

## Definition

* **Type:** Struct
* **Namespace:** [UnityEngine.TestTools](/engine/6000.6/script-reference/unityengine/testtools.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public struct CoveredSequencePoint
```

## Fields

| Value                                                                                              | Description                                                                                                             |
| -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| [column](/engine/6000.6/script-reference/unityengine/testtools/coveredsequencepoint/column.md)     | The column number of the line of the file that contains the sequence point.                                             |
| [filename](/engine/6000.6/script-reference/unityengine/testtools/coveredsequencepoint/filename.md) | The name of the file that contains the sequence point.                                                                  |
| [hitCount](/engine/6000.6/script-reference/unityengine/testtools/coveredsequencepoint/hitcount.md) | The number of times the sequence point has been visited.                                                                |
| [ilOffset](/engine/6000.6/script-reference/unityengine/testtools/coveredsequencepoint/iloffset.md) | The offset in bytes from the start of the method to the first Intermediate Language instruction of this sequence point. |
| [line](/engine/6000.6/script-reference/unityengine/testtools/coveredsequencepoint/line.md)         | The line number of the file that contains the sequence point.                                                           |
| [method](/engine/6000.6/script-reference/unityengine/testtools/coveredsequencepoint/method.md)     | The method covered by the sequence point.                                                                               |
