class Xcodeproj::XCScheme::TestAction::TestableReference::Test
Public Class Methods
new(node = nil)
click to toggle source
@param [REXML::Element] node
The 'Test' XML node that this object will wrap. If nil, will create a default XML node to use.
# 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
Public Instance Methods
identifier()
click to toggle source
@return [String]
Skipped test class name
# File lib/xcodeproj/scheme/test_action.rb, line 373 def identifier @xml_element.attributes['Identifier'] end
identifier=(value)
click to toggle source
@param [String] value
Set the name of the skipped test class name
# File lib/xcodeproj/scheme/test_action.rb, line 380 def identifier=(value) @xml_element.attributes['Identifier'] = value end