Method: Xcodeproj::XCScheme::TestAction::TestableReference#buildable_references

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

#buildable_referencesArray<BuildableReference>

Returns The list of BuildableReferences this action will build. (The list usually contains only one element).

Returns:

  • (Array<BuildableReference>)

    The list of BuildableReferences this action will build. (The list usually contains only one element)



263
264
265
266
267
# File 'lib/xcodeproj/scheme/test_action.rb', line 263

def buildable_references
  @xml_element.get_elements('BuildableReference').map do |node|
    BuildableReference.new(node)
  end
end