[iOS] Unit Test(1) [iOS] Unit Test(2) 저번 포스팅에서는 Unit Test 프로젝트 생성 및 기초 설명 및 동기함수 테스트를 진행해 보았는데, 이번에는 비동기 통신 함수를 테스트하는 과정을 포스팅할 예정이다. 전체 코드 import XCTest @testable import UnitTestExample class UnitTextExampleSlow: XCTestCase { var sut: URLSession! let networkMonitor = NetworkMonitor.shared override func setUpWithError() throws { try super.setUpWithError() sut = URLSession(configuration: .default)..