I have a circuit in Xcode that only has a test configuration. And this diagram points to a goal that has all my tests (this is Cocoa's target installation of an object test block for OS X).
So, I am doing Command + U to run all of these tests, and it works fine. However, several tests require access to localization resources. I added these resources to my goal and even checked the localization resources in the resulting binary binary.
However, the code does not see the resources, so when any test executes an NSLocalizedString, it returns a key instead of a localized string.
Is there anything special I need to do so that tests can see these resources?
xcode localization macos xctest
Victor ronin
source share