azu / TKSenTestAsync

SenTest category with Asynchronous support

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TKSenTestAsync

SenTest category with Asynchronous support

Installation

  • Using cocoapods
  pod 'TKSenTestAsync'

Usage

#import "SenTest+Async.h"


- (void)testGetObjects {
    [self runTestWithBlock:^{
        doSomeStuff();
        STAssertNil(nil, @"Should be nil");
        [self blockTestCompleted]; // required
    }];
}

About

SenTest category with Asynchronous support