Method: Xcodeproj::XCScheme::TestAction#macro_expansions

Defined in:
lib/xcodeproj/scheme/test_action.rb

#macro_expansionsArray<MacroExpansion>

Returns The list of MacroExpansion bound with this TestAction.

Returns:

  • (Array<MacroExpansion>)

    The list of MacroExpansion bound with this TestAction



102
103
104
105
106
# File 'lib/xcodeproj/scheme/test_action.rb', line 102

def macro_expansions
  @xml_element.get_elements('MacroExpansion').map do |node|
    MacroExpansion.new(node)
  end
end