0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

XCTestでWaitの書き方が変わった

Last updated at Posted at 2023-07-14

ノーティスメッセージ

スクリーンショット 2023-07-14 9.18.29.png

インスタンスメソッド「待機」は、非同期のコンテキストからは利用できません。 
await fulfillment(of:timeout:endforceorder :)を使用してください。 
これは、Swift 6のエラーです。

結果

- wait(for: [exp], timeout: 1000, enforceOrder: false)
+ await fulfillment(of: [exp], timeout: 1000, enforceOrder: false)

どうしたか

どうやらXCTestにもAwaitの波が来たようです。
ということで、少し試して書き方は下記の通り。

let exp = expectation(description: "処理を待つ")

Task {
    let count = await countFunction()
    let data = await getFunction()
    print(count, data)
    exp.fulfill()
}
await fulfillment(of: [exp], timeout: 1000, enforceOrder: false)

単純に今までWaitだったのが置き換わっただけっぽい?
間違っていたら、ご指摘いただけると嬉しいです。

(普段あまり投稿しないので、がんばってみました・・・。)

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?