class Xcodeproj::XCScheme::TestAction

Public Instance Methods

test_plans() click to toggle source
# File lib/fastlane/plugin/test_center/helper/xcodeproj/scheme/test_action.rb, line 4
def test_plans
  return [] unless @xml_element.elements['TestPlans']

  @xml_element.elements['TestPlans'].get_elements('TestPlanReference').map do |node|
    TestPlanReference.new(node)
  end
end