#import #import #import "UIViewController+LayoutProtocol.h" @interface UIViewController_LayoutProtocolTest : XCTestCase @property (nonatomic, retain) UIViewController* uut; @end @implementation UIViewController_LayoutProtocolTest - (void)setUp { [super setUp]; self.uut = [OCMockObject partialMockForObject:[UIViewController new]]; self.uut.layoutInfo = [[RNNLayoutInfo alloc] init]; self.uut.layoutInfo.componentId = @"componentId"; } @end