让我给你讲讲 iOS 自动化测试的那些干货(18)

发表于:2017-03-10来源:csdn作者:LeoMobileDeveloper点击数: 标签:iOS
value ;} 1 2 3 4 5 6 1 2 3 4 5 6 而这个函数就是pure function,因为给定输入,输出一定一致。 - (NSInteger)function_2:(NSInteger) base { NSInteger value = base + 1 ; return value ;}
value; }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

而这个函数就是pure function,因为给定输入,输出一定一致。

- (NSInteger)function_2:(NSInteger)base{
    NSInteger value = base + 1;
    return value;
}
  • 1
  • 2
  • 3
  • 4
  • 1
  • 2
  • 3
  • 4

所以,如果你写了一个没有参数,或者没有返回值的方法,那么你要小心了,很可能这个方法很难测试。

关于MVC

在良好的MVC

原文转自:http://blog.csdn.net/hello_hwc/article/details/60957515