Open SongSeoYoung opened 2 years ago
https://github.com/wody-d/woody-iOS-tip/blob/main/TIL_2022:10:05_xcactivity.md
XCTContext
클래스를 통해 XCTActivity
를 생성하고 실행할 수 있음
XCTContext
는 현재 테스팅하는 것의 대리자. 말 그대로 테스트 Context라고 이해runActivity(named:block:)
타입 메소드를 통해 activity를 생성 및 실행함name
프로퍼티와 XCTAttachment
를 추가하는 메소드로 이루어짐
XCTAttachment
: 테스트를 실행할 때 결과로 나올 수 있는 데이터들
궁금한점
XCTestCase conforms to XCTActivity, so you can simplify complex tests by organizing them into activities, and attach output to tests for later analysis. For more information, see Activities and Attachments.
에서 XCTActivity 에 대해 공부해보자!
찾아본 것