Class: DatadogAPIClient::V2::FileCoverageLines

Inherits:
Object
  • Object
show all
Includes:
BaseGenericModel
Defined in:
lib/datadog_api_client/v2/models/file_coverage_lines.rb

Overview

Per-file line coverage data including executable, covered, and added lines.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#added_linesObject

Line numbers that were added in the specified scope (for example, in a PR diff).



25
26
27
# File 'lib/datadog_api_client/v2/models/file_coverage_lines.rb', line 25

def added_lines
  @added_lines
end

#additional_propertiesObject

Returns the value of attribute additional_properties.



33
34
35
# File 'lib/datadog_api_client/v2/models/file_coverage_lines.rb', line 33

def additional_properties
  @additional_properties
end

#covered_linesObject

Line numbers that were covered by tests.



28
29
30
# File 'lib/datadog_api_client/v2/models/file_coverage_lines.rb', line 28

def covered_lines
  @covered_lines
end

#executable_linesObject

Line numbers that are executable (can be covered).



31
32
33
# File 'lib/datadog_api_client/v2/models/file_coverage_lines.rb', line 31

def executable_lines
  @executable_lines
end