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.
326 327 328 329 330 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 326 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.
335 336 337 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 335 def identifier @xml_element.attributes['Identifier'] end |
#identifier=(value) ⇒ Object
342 343 344 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 342 def identifier=(value) @xml_element.attributes['Identifier'] = value end |