Class: Datadog::CI::CodeCoverage::NullComponent
- Inherits:
-
Object
- Object
- Datadog::CI::CodeCoverage::NullComponent
- Defined in:
- lib/datadog/ci/code_coverage/null_component.rb
Instance Attribute Summary collapse
-
#enabled ⇒ Object
readonly
Returns the value of attribute enabled.
Instance Method Summary collapse
- #configure(library_configuration) ⇒ Object
-
#initialize ⇒ NullComponent
constructor
A new instance of NullComponent.
- #shutdown! ⇒ Object
- #upload(serialized_report:, format:) ⇒ Object
Constructor Details
#initialize ⇒ NullComponent
Returns a new instance of NullComponent.
9 10 11 |
# File 'lib/datadog/ci/code_coverage/null_component.rb', line 9 def initialize @enabled = false end |
Instance Attribute Details
#enabled ⇒ Object (readonly)
Returns the value of attribute enabled.
7 8 9 |
# File 'lib/datadog/ci/code_coverage/null_component.rb', line 7 def enabled @enabled end |
Instance Method Details
#configure(library_configuration) ⇒ Object
13 14 |
# File 'lib/datadog/ci/code_coverage/null_component.rb', line 13 def configure(library_configuration) end |
#shutdown! ⇒ Object
19 20 |
# File 'lib/datadog/ci/code_coverage/null_component.rb', line 19 def shutdown! end |
#upload(serialized_report:, format:) ⇒ Object
16 17 |
# File 'lib/datadog/ci/code_coverage/null_component.rb', line 16 def upload(serialized_report:, format:) end |