일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Refactoring
- rxswift
- collectionview
- swift documentation
- UITextView
- uitableview
- 리팩토링
- Protocol
- UICollectionView
- 애니메이션
- HIG
- 스위프트
- SWIFT
- ribs
- Human interface guide
- MVVM
- Xcode
- tableView
- combine
- swiftUI
- RxCocoa
- ios
- map
- 리펙터링
- 리펙토링
- clean architecture
- Clean Code
- Observable
- 클린 코드
- uiscrollview
- Today
- Total
목록JUnit (2)
김종권의 iOS 앱 개발 알아가기
1. xcodebuild로 테스트 돌리기 - 개념 (xcodebuild, unit test, ui test)2. xcodebuild로 테스트 돌리기 - 결과 얻어오기 (xcresult)3. xcodebuild로 테스트 돌리기 - xcresult 파일 변환하여 분석하기 (xcrun xcresulttool, xcpretty, junit)1. xcresulttool를 사용하여 변환: xcresult -> json.xcresult는 범용적인 포멧이 아니므로 json으로 변환을 하면 ci와 같은 여러곳에서 사용이 가능xcrun xcresulttool을 사용xcrun xcresulttool get --path "TestResults.xcresult" --format jsonjson으로 보면 key-value 쌍으로..
1. xcodebuild로 테스트 돌리기 - 개념 (xcodebuild, unit test, ui test)2. xcodebuild로 테스트 돌리기 - 결과 얻어오기 (xcresult)3. xcodebuild로 테스트 돌리기 - xcresult 파일 변환하여 분석하기 (xcrun xcresulttool, xcpretty, junit)xcodebuild로 유닛 테스트 돌리기지난번 글에서 아래처럼 xcodebuild test [options]으로 빌드가 가능이렇게 유닛테스트를 실행하면 결과도 가져올 수 있는데, 이 결과를 통해 유닛 테스트가 잘 되었는지 분석도 가능xcodebuild test -scheme -destination 'platform=iOS Simulator,name=iPhone 15'결과 가..