Created
August 10, 2017 16:37
-
-
Save koromiko/299c0877842a108263d724c5d4285fbe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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