In my App I\'m using NSLocalizedString to localize my app. Now I want to switch to UITests and habe Testcode like this:
[tabBarsQue
In addition to Joe's answer you can also force language for UI tests directly in test code without editing a scheme like this:
- (void)setUp
{
[super setUp];
self.continueAfterFailure = NO;
XCUIApplication *app = [[XCUIApplication alloc] init];
app.launchArguments = @[@"-AppleLanguages", @"(en)", @"-AppleLocale", @"en_EN"];
[app launch];
}