I am trying to call a completion block in a unit test but it never reaches. Here is the code:
[vc configureRecorder:^{
NSLog(@"Completion...");
}];
This is the method:
-(void)configureRecorder:(void(^)(void))callback {
NSLog(@"Method");
}