Method: Xcodeproj::XCScheme::TestAction#command_line_arguments=
- Defined in:
- lib/xcodeproj/scheme/test_action.rb
#command_line_arguments=(arguments) ⇒ CommandLineArguments
Returns arguments Sets the CommandLineArguments that will be passed at app launch.
148 149 150 151 152 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 148 def command_line_arguments=(arguments) @xml_element.delete_element(XCScheme::COMMAND_LINE_ARGS_NODE) @xml_element.add_element(arguments.xml_element) if arguments arguments end |