I\'m trying to dive into the quite frankly terrible world of unit testing using Xcode (such a convoluted process it seems.)
Basically I have this test class, attempt
You have to have an @implementation for Show.
@implementation
Show
Or you could use
Show* s = [[objc_getClass("Show") alloc] init]; ...
or
Show* s = [[NSClassFromString(@"Show") alloc] init]; ...
to resolving the class in run-time.