Class: DatadogAPIClient::V2::FileCoverageLines
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::FileCoverageLines
- 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
-
#added_lines ⇒ Object
Line numbers that were added in the specified scope (for example, in a PR diff).
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#covered_lines ⇒ Object
Line numbers that were covered by tests.
-
#executable_lines ⇒ Object
Line numbers that are executable (can be covered).
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#added_lines ⇒ Object
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_properties ⇒ Object
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_lines ⇒ Object
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_lines ⇒ Object
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 |