일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- map
- 클린 코드
- 리펙토링
- clean architecture
- RxCocoa
- uitableview
- Clean Code
- 리팩토링
- HIG
- Protocol
- 스위프트
- combine
- SWIFT
- UITextView
- tableView
- swift documentation
- ribs
- 애니메이션
- uiscrollview
- Refactoring
- MVVM
- ios
- Human interface guide
- UICollectionView
- Observable
- 리펙터링
- swiftUI
- rxswift
- Xcode
- collectionview
- Today
- Total
목록Xcodebuild (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, junit, xml)3. xcodebuild로 테스트 돌리기 - xcresult 파일 변환하여 분석하기 (xcrun xcresulttool, xcpretty, junit)xcodebuild란?커멘드 라인으로 build, query, analyze, test, archive할 수 있는 라이브러리Xcode는 GUI 방식인 반면, xcodebuild는 커멘드 라인 방식xcodebuild를 잘 사용하면 CI/CD에서도 빌드를 돌릴 수 있고 활용하면 프로젝트 구조 파악이 용이xcodebuild 기능 살펴보기xcodebuild를 통..