Cristian Kocza
Cristian Kocza
Since `NSURLSession` will execute the requests on a background thread, we can end up in the situation when the `tearDown` of a previous unit test stops Nocilla since it no...
The link from practicalswift is currently a bogus one, it redirects to some kind of online promotion.
**Description** The following code crashes at runtime: ```swift protocol Worker { } struct DummyWorker: Worker { init(_: Int) { } } let workerFactory: (Int) -> some Worker = DummyWorker.init let...