Skip to content

Instantly share code, notes, and snippets.

@koromiko
Created August 10, 2017 16:37
Show Gist options
  • Select an option

  • Save koromiko/299c0877842a108263d724c5d4285fbe to your computer and use it in GitHub Desktop.

Select an option

Save koromiko/299c0877842a108263d724c5d4285fbe to your computer and use it in GitHub Desktop.
class HttpClientTests: XCTestCase {
var httpClient: HttpClient!
let session = MockURLSession()
override func setUp() {
super.setUp()
httpClient = HttpClient(session: session)
}
override func tearDown() {
super.tearDown()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment