Asynchronous iOS Unit Test Tutorial

Published: Wed, 05/25/16

View Online
 
Asynchronous iOS Unit Test Tutorial
 

By default, iOS unit tests in Xcode execute just like any other method, from top to bottom, in serial order. This is fine most of the time. Occasionally though, you’ll find the need to write a unit test for asynchronous code. And with the prevalence of closures in Swift, writing an asynchronous iOS unit test … Continue reading "Asynchronous iOS Unit Test Tutorial"

The post Asynchronous iOS Unit Test Tutorial appeared first on .