菜鸟教程小白 发表于 2022-12-13 09:29:44

ios - 回调方法的单元测试用例ios


                                            <p><p>我的应用中有以下方法,我需要为其编写单元测试用例。<br/>
谁能建议我如何测试是否调用了成功 block 或错误 block 。 </p>

<pre><code>- (IBAction)loginButtonTapped:(id)sender
{
    void (^SuccessBlock)(id, NSDictionary*) = ^(id response, NSDictionary* headers) {
      ;
    };

    void (^ErrorBlock)(id, NSDictionary*, id) = ^(NSError* error, NSDictionary* headers, id response) {
      // some code
    };

    [ServiceClass deleteWebService:@“http://someurl&#34;
                              data:nil
                  withSuccessBlock:SuccessBlock
                  withErrorBlock:ErrorBlock];
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您必须使用期望,这是一个相对较新引入的 API。添加它们是为了解决您现在遇到的问题,验证调用了异步方法的回调。 </p>

<p>请注意,您还可以设置会影响测试结果的超时(例如,慢速网络连接可能会引发误报,除非您当然要检查慢速连接,尽管有更好的方法来做到这一点) .</p>

<pre><code>- (void)testThatCallbackIsCalled {

    // Given
    XCTestExpectation *expectation = ;

    // When
    void (^SuccessBlock)(id, NSDictionary*) = ^(id response, NSDictionary* headers) {

      // Then
      ;
      ; // This tells the test that your expectation was fulfilled i.e. the callback was called.
    };

    void (^ErrorBlock)(id, NSDictionary*, id) = ^(NSError* error, NSDictionary* headers, id response) {

   // some code

    };

    [ServiceClass deleteWebService:@“http://someurl&#34;

                                           data:nil

                               withSuccessBlock:SuccessBlock

                                 withErrorBlock:ErrorBlock];
    };

    // Here we set the timeout, play around to find what works best for your case to avoid false positives.
    ;

}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 回调方法的单元测试用例ios,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31785824/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31785824/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 回调方法的单元测试用例ios