美文网首页
IOS单元测试

IOS单元测试

作者: 沧州宁少 | 来源:发表于2018-06-03 16:32 被阅读0次

IOS单元测试

  • 单元测试开始
    - (void)setUp {
    [super setUp];
    // Put setup code here. This method is called before the invocation of each test method in the class.
    }
  • 单元测试结束
    - (void)tearDown {
    // Put teardown code here. This method is called after the invocation of each test method in the class.
    [super tearDown];
    }
  • 单元测试测试方法 所有的测试内容都在这个方法里面执行。但是不一定是命名为testExample,也可以是textProgram
    - (void)testExample {}
  • 性能测试。耗时和性能消耗在这里测试
    - (void)testPerformanceExample {
    // This is an example of a performance test case.
    [self measureBlock:^{
    // Put the code you want to measure the time of here.
    }];
    }
  • 测试用例覆盖测试的工具类里面所有的func
image.png image.png

这个覆盖率指的是代码而不是函数。

相关文章

  • iOS开发——单元测试

    iOS开发——单元测试 iOS开发——单元测试

  • 单元测试

    内容 单元测试 参考文章: [iOS单元测试系列]单元测试框架选型 iOS单元测试:Specta + Expect...

  • 【开发技巧】单元测试

    iOS XCTest单元测试 iOS开发:XCTest单元测试(附上一个单例的测试代码) [iOS单元测试系列]单...

  • 2019-08-28

    浅谈iOS单元测试 iOS单元测试从入门到应用 - 简书

  • 关于iOS单元测试几点Tips

    相关文章: 1、走出 iOS 单元测试的困境2、iOS单元测试--百度Hi iOS团队技术周报 一、单元测试有什么...

  • 浅谈iOS单元测试

    浅谈iOS单元测试

  • IOS单元测试

    IOS单元测试 单元测试开始- (void)setUp {[super setUp];// Put setup c...

  • iOS单元测试

    参考博客:iOS单元测试概念了解iOS异步测试Xcode:为你的项目集成单元测试(unit tests)时记得避开...

  • 单元测试

    转:iOS 使用Kiwi测试框架进行单元测试

  • iOS单元测试

    iOS单元测试 前言 单元测试使用XCTest框架 单元测试的目标:模型文件 用处:不基于界面UI的情况下,保证模...

网友评论

      本文标题:IOS单元测试

      本文链接:https://www.haomeiwen.com/subject/buijsftx.html