Its convenient to use bundle resources for testing, for example to provide the expected outcome for a test.
For the old logic-style tests, I would use the main bundle for this, however for application style tests the main bundle is the app itself. I don't want to put test resources in the main bundle.
Eg, the following code is not working if the test resource only belongs to the test target:
//Load a resource from the main bundle
NSString* xml = [[TyphoonBundleResource withName:@"signUpResponse.xml"] asString];
. . . is there a specific bundle for the tests? How can I get a handle to this?