Yeah, one technique that I use is to extend the:
@interface MyTestApplicationDelegate : GHUnitIPhoneAppDelegate {
}
@end
Then in GHUnitIPhoneTestMain.m:
retVal = UIApplicationMain(argc, argv, nil,
@"MyTestApplicationDelegate");
I will look into seeing if I can make this easier, or remove the
dependency, but this should work in the meantime.