Class: Xcodeproj::XCScheme::TestAction::TestableReference::Test
- Inherits:
-
XMLElementWrapper
- Object
- XMLElementWrapper
- Xcodeproj::XCScheme::TestAction::TestableReference::Test
- Defined in:
- lib/xcodeproj/scheme/test_action.rb
Instance Attribute Summary
Attributes inherited from XMLElementWrapper
Instance Method Summary collapse
-
#identifier ⇒ String
Skipped test class name.
- #identifier=(value) ⇒ Object
-
#initialize(node = nil) ⇒ Test
constructor
A new instance of Test.
Methods inherited from XMLElementWrapper
Constructor Details
#initialize(node = nil) ⇒ Test
Returns a new instance of Test.
364 365 366 367 368 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 364 def initialize(node = nil) create_xml_element_with_fallback(node, 'Test') do self.identifier = node.attributes['Identifier'] unless node.nil? end end |
Instance Method Details
#identifier ⇒ String
Returns Skipped test class name.
373 374 375 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 373 def identifier @xml_element.attributes['Identifier'] end |
#identifier=(value) ⇒ Object
380 381 382 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 380 def identifier=(value) @xml_element.attributes['Identifier'] = value end |