TKSenTestAsync 0.0.2

TKSenTestAsync 0.0.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Taras Kalapun.



  • By
  • Taras Kalapun

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
    }];
}