jonreid / OCMockito

Mockito for Objective-C: creation, verification and stubbing of mock objects
MIT License
991 stars 118 forks source link

Crash describing collection containing mockProtocol #136

Closed jonreid closed 8 years ago

jonreid commented 8 years ago
id<NSObject> mockedProtocol = mockProtocol(@protocol(UITableViewDelegate));
NSArray* array = @[ mockedProtocol ];
NSString* string = [array description]; // this line will cause a crash
jonreid commented 8 years ago

Related to #131