Class: Datadog::CI::TestManagement::NullComponent
- Inherits:
-
Object
- Object
- Datadog::CI::TestManagement::NullComponent
- Defined in:
- lib/datadog/ci/test_management/null_component.rb
Instance Attribute Summary collapse
-
#enabled ⇒ Object
readonly
Returns the value of attribute enabled.
-
#tests_properties ⇒ Object
readonly
Returns the value of attribute tests_properties.
Instance Method Summary collapse
- #configure(_, _) ⇒ Object
-
#initialize ⇒ NullComponent
constructor
A new instance of NullComponent.
- #tag_test_from_properties(_) ⇒ Object
Constructor Details
#initialize ⇒ NullComponent
Returns a new instance of NullComponent.
12 13 14 15 |
# File 'lib/datadog/ci/test_management/null_component.rb', line 12 def initialize @enabled = false @tests_properties = {} end |
Instance Attribute Details
#enabled ⇒ Object (readonly)
Returns the value of attribute enabled.
10 11 12 |
# File 'lib/datadog/ci/test_management/null_component.rb', line 10 def enabled @enabled end |
#tests_properties ⇒ Object (readonly)
Returns the value of attribute tests_properties.
10 11 12 |
# File 'lib/datadog/ci/test_management/null_component.rb', line 10 def tests_properties @tests_properties end |
Instance Method Details
#configure(_, _) ⇒ Object
17 18 |
# File 'lib/datadog/ci/test_management/null_component.rb', line 17 def configure(_, _) end |
#tag_test_from_properties(_) ⇒ Object
20 21 |
# File 'lib/datadog/ci/test_management/null_component.rb', line 20 def tag_test_from_properties(_) end |