Created by: robbertvanginkel
This adds partial support for XCUITests, apple's uitesting framework. The apple_test
rule will get a new optional parameter is_ui_test
, which should be used in combination with test_host_app
. An example:
apple_test(
name = 'UITests',
test_host_app = ':App',
is_ui_test = True,
)
These test bundles will be skipped when with buck test
, as xctool doesn't support running them (see xctool#534). They will however be available when the project is generated with buck project //foo:App
.