Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
Xcodeのメジャーアップデートだけでなく「Testing」の箇所がある程度アップデートされた際にコードを追加します。
直近の3バージョンを主としており、それより前はArchiveのところにまとめてあります。

## Xcode 16
### Xcode16.0
- [Xcode 16.0のREADME](Samples/Xcode16.0/README.md)

### Xcode16.3
- T.B.D
Copy link

Copilot AI Apr 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The placeholder 'T.B.D' in the Xcode 16.3 section may confuse readers; consider providing a brief description or linking to an issue for further context.

Suggested change
- T.B.D
- Content for Xcode 16.3 is under development. Please check [this issue](https://github.com/tarappo/ios_test_sample_code/issues/1) for updates.

Copilot uses AI. Check for mistakes.

## Xcode 15
### Xcode 15.0
- [Xcode 15.0のREADME](Samples/Xcode15.0/README.md)
Expand All @@ -17,18 +24,11 @@ Xcodeのメジャーアップデートだけでなく「Testing」の箇所が
### Xcode 14.3
- [Xcode 14.3のREADME](Samples/Xcode14.3/README.md)


## Xcode 13
### Xcode 13.0
- [Xcode 13.0のREADME](Samples/Xcode13.0/README.md)
### Xcode 13.3
- [Xcode 13.3のREADME](Samples/Xcode13.3/README.md)


## Archive
古いXcodeのバージョンの情報は次にまとめてあります。

- [Xcode 11.0](Samples/Archive/Xcode11.0/README.md)
- [Xcode 11.4](Samples/Archive/Xcode11.4/README.md)
- [Xcode 12.0](Samples/Archive/Xcode12.0/README.md)
- [Xcode 12.5](Samples/Archive/Xcode12.5/README.md)
- [Xcode 13.0](Samples/Archive/Xcode13.0/README.md)
- [Xcode 13.3](Samples/Archive/Xcode13.3/README.md)
File renamed without changes.
File renamed without changes.
5 changes: 4 additions & 1 deletion Samples/Xcode16.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
- [Release Note](https://developer.apple.com/documentation/xcode-release-notes/xcode-16-release-notes)

## Testing
Xcode16.0からSwiftのために作られたTesting Frameworkである「Swift Testing」が導入されました。


Swift Testingの詳細については情報が多いため次の公式資料を参考にしてください。
- https://developer.apple.com/documentation/Testing
- https://github.com/swiftlang/swift-testing

## 参考資料
- https://note.com/tarappo/n/nb33a387d3bbd
3 changes: 1 addition & 2 deletions Samples/fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
default_platform(:ios)

platform :ios do

all_main_test_target = [
[ "Xcode13.0", "./Xcode13.0/xcode13.0.xcodeproj", "Xcode13.0Tests", "-run-tests-until-failure -test-iterations 3" ],
[ "Xcode16.0", "./Xcode16.0/xcode16.xcodeproj", "xcode16" ]
]

all_arhive_target = [
[ "Xcode 11.0", "./Archive/Xcode11.0/xcode11.0.xcodeproj", "xcode11.0AllTests", "" ],
[ "Xcode 11.4", "./Archive/Xcode11.4/xcode11.4.xcodeproj", "xcode11.4", "" ],
[ "Xcode 12.5", "./Archive/Xcode12.5/xcode12.5.xcodeproj", "Xcode12.5", "" ],
[ "Xcode 13.0", "./Archive/Xcode13.0/xcode13.0.xcodeproj", "Xcode13.0Tests", "-run-tests-until-failure -test-iterations 3" ],
]

desc "run main tests"
Expand Down