| | | 1 | | using DirectSight.Parser.Analysis.LineCoverage; |
| | | 2 | | |
| | | 3 | | namespace DirectSight.Parser.Analysis; |
| | | 4 | | |
| | | 5 | | /// <summary> |
| | | 6 | | /// Coverage information for a test method. |
| | | 7 | | /// </summary> |
| | | 8 | | internal class CoverageByTrackedMethod |
| | | 9 | | { |
| | | 10 | | /// <summary> |
| | | 11 | | /// Gets or sets an array containing the coverage information by line number. |
| | | 12 | | /// -1: Not coverable. |
| | | 13 | | /// 0: Not visited. |
| | | 14 | | /// >0: Number of visits. |
| | | 15 | | /// </summary> |
| | 28512 | 16 | | internal ILineInfo<int> Coverage { get; set; } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Gets or sets an array containing the line visit status by line number. |
| | | 20 | | /// </summary> |
| | 12211 | 21 | | internal ILineInfo<LineVisitStatus> LineVisitStatus { get; set; } |
| | | 22 | | } |