Method: Xcodeproj::XCScheme#add_test_target
- Defined in:
- lib/xcodeproj/scheme.rb
#add_test_target(test_target) ⇒ Object
Add a target to the list of targets to build in the build action.
214 215 216 217 |
# File 'lib/xcodeproj/scheme.rb', line 214 def add_test_target(test_target) testable = TestAction::TestableReference.new(test_target) test_action.add_testable(testable) end |