Class FunctionCoverage
Coverage data for a JavaScript function.
public sealed class FunctionCoverage
- Inheritance
-
FunctionCoverage
- Inherited Members
Properties
FunctionName
JavaScript function name.
[JsonPropertyName("functionName")]
public string FunctionName { get; set; }
Property Value
IsBlockCoverage
Whether coverage data for this function has block granularity.
[JsonPropertyName("isBlockCoverage")]
public bool IsBlockCoverage { get; set; }
Property Value
Ranges
Source ranges inside the function with coverage data.
[JsonPropertyName("ranges")]
public CoverageRange[] Ranges { get; set; }