Class: Xcodeproj::XCScheme::TestAction
- Inherits:
-
AbstractSchemeAction
- Object
- XMLElementWrapper
- AbstractSchemeAction
- Xcodeproj::XCScheme::TestAction
- Defined in:
- lib/xcodeproj/scheme/test_action.rb
Overview
This class wraps the TestAction node of a .xcscheme XML file
Defined Under Namespace
Classes: TestableReference
Instance Attribute Summary
Attributes inherited from XMLElementWrapper
Instance Method Summary collapse
- #add_macro_expansion(macro_expansion) ⇒ Object
- #add_testable(testable) ⇒ Object
- #code_coverage_enabled=(flag) ⇒ Object
-
#code_coverage_enabled? ⇒ Bool
Whether Clang Code Coverage is enabled (‘Gather coverage data’ turned ON).
-
#command_line_arguments ⇒ CommandLineArguments
Returns the CommandLineArguments that will be passed at app launch.
-
#command_line_arguments=(arguments) ⇒ CommandLineArguments
Arguments Sets the CommandLineArguments that will be passed at app launch.
- #disable_main_thread_checker=(flag) ⇒ Object
-
#disable_main_thread_checker? ⇒ Bool
Whether this Test Action should disable detection of UI API misuse from background threads.
-
#environment_variables ⇒ EnvironmentVariables
Returns the EnvironmentVariables that will be defined at test launch.
- #environment_variables=(env_vars) ⇒ EnvironmentVariables
-
#initialize(node = nil) ⇒ TestAction
constructor
A new instance of TestAction.
-
#macro_expansions ⇒ Array<MacroExpansion>
The list of MacroExpansion bound with this TestAction.
- #should_use_launch_scheme_args_env=(flag) ⇒ Object
-
#should_use_launch_scheme_args_env? ⇒ Bool
Whether this Test Action should use the same arguments and environment variables as the Launch Action.
-
#testables ⇒ Array<TestableReference>
The list of TestableReference (test bundles) associated with this Test Action.
Methods inherited from AbstractSchemeAction
#build_configuration, #build_configuration=
Methods inherited from XMLElementWrapper
Constructor Details
#initialize(node = nil) ⇒ TestAction
Returns a new instance of TestAction.
12 13 14 15 16 17 18 19 20 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 12 def initialize(node = nil) create_xml_element_with_fallback(node, 'TestAction') do @xml_element.attributes['selectedDebuggerIdentifier'] = 'Xcode.DebuggerFoundation.Debugger.LLDB' @xml_element.attributes['selectedLauncherIdentifier'] = 'Xcode.DebuggerFoundation.Launcher.LLDB' @xml_element.add_element('AdditionalOptions') self.should_use_launch_scheme_args_env = true self.build_configuration = 'Debug' end end |
Instance Method Details
#add_macro_expansion(macro_expansion) ⇒ Object
99 100 101 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 99 def add_macro_expansion(macro_expansion) @xml_element.add_element(macro_expansion.xml_element) end |
#add_testable(testable) ⇒ Object
82 83 84 85 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 82 def add_testable(testable) testables = @xml_element.elements['Testables'] || @xml_element.add_element('Testables') testables.add_element(testable.xml_element) end |
#code_coverage_enabled=(flag) ⇒ Object
64 65 66 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 64 def code_coverage_enabled=(flag) @xml_element.attributes['codeCoverageEnabled'] = bool_to_string(flag) end |
#code_coverage_enabled? ⇒ Bool
Returns Whether Clang Code Coverage is enabled (‘Gather coverage data’ turned ON).
57 58 59 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 57 def code_coverage_enabled? string_to_bool(@xml_element.attributes['codeCoverageEnabled']) end |
#command_line_arguments ⇒ CommandLineArguments
Returns the CommandLineArguments that will be passed at app launch
125 126 127 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 125 def command_line_arguments CommandLineArguments.new(@xml_element.elements[XCScheme::COMMAND_LINE_ARGS_NODE]) end |
#command_line_arguments=(arguments) ⇒ CommandLineArguments
Returns arguments Sets the CommandLineArguments that will be passed at app launch.
132 133 134 135 136 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 132 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 |
#disable_main_thread_checker=(flag) ⇒ Object
50 51 52 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 50 def disable_main_thread_checker=(flag) @xml_element.attributes['disableMainThreadChecker'] = bool_to_string(flag) end |
#disable_main_thread_checker? ⇒ Bool
Returns Whether this Test Action should disable detection of UI API misuse from background threads.
42 43 44 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 42 def disable_main_thread_checker? string_to_bool(@xml_element.attributes['disableMainThreadChecker']) end |
#environment_variables ⇒ EnvironmentVariables
Returns the EnvironmentVariables that will be defined at test launch
106 107 108 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 106 def environment_variables EnvironmentVariables.new(@xml_element.elements[XCScheme::VARIABLES_NODE]) end |
#environment_variables=(env_vars) ⇒ EnvironmentVariables
114 115 116 117 118 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 114 def environment_variables=(env_vars) @xml_element.delete_element(XCScheme::VARIABLES_NODE) @xml_element.add_element(env_vars.xml_element) if env_vars env_vars end |
#macro_expansions ⇒ Array<MacroExpansion>
Returns The list of MacroExpansion bound with this TestAction.
90 91 92 93 94 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 90 def macro_expansions @xml_element.get_elements('MacroExpansion').map do |node| MacroExpansion.new(node) end end |
#should_use_launch_scheme_args_env=(flag) ⇒ Object
34 35 36 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 34 def should_use_launch_scheme_args_env=(flag) @xml_element.attributes['shouldUseLaunchSchemeArgsEnv'] = bool_to_string(flag) end |
#should_use_launch_scheme_args_env? ⇒ Bool
Returns Whether this Test Action should use the same arguments and environment variables as the Launch Action.
26 27 28 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 26 def should_use_launch_scheme_args_env? string_to_bool(@xml_element.attributes['shouldUseLaunchSchemeArgsEnv']) end |
#testables ⇒ Array<TestableReference>
Returns The list of TestableReference (test bundles) associated with this Test Action.
71 72 73 74 75 76 77 |
# File 'lib/xcodeproj/scheme/test_action.rb', line 71 def testables return [] unless @xml_element.elements['Testables'] @xml_element.elements['Testables'].get_elements('TestableReference').map do |node| TestableReference.new(node) end end |