我有一些代码在从 ocunit 中的逻辑测试运行时会引发异常。我想忽略此代码并测试其余功能,而无需设置应用程序测试也不必分解方法。
例如:
-(void)testMethod {
BOOL result = NO;
UIFont * font = [UIFont systemFontOfSize:12]; //throws exception in ocunit
...
return result;
}
如何在排除 UIFont 创建的单元测试中调用它?