We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
現在は API がときどき失敗するタイミングを外から制御できないため、テストのフローがランダムで変化する可能性がある。
それを想定したテストになっているものの、そのテストケースは次の2通りが、状況によって検査される(実行のたびに状況が変わり、そのときに片方は検査されない)
以下は、この件が該当するテストコードの1つ。
do { let responseJSON = try YumemiWeather.fetchWeatherList(parameter) let dateFormatter = DateFormatter() dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZZZZZ" let decoder = JSONDecoder() decoder.keyDecodingStrategy = .convertFromSnakeCase decoder.dateDecodingStrategy = .formatted(dateFormatter) let response = try decoder.decode([AreaResponse].self, from: Data(responseJSON.utf8)) XCTAssertEqual(response.count, Area.allCases.count) } catch let error as YumemiWeatherError { XCTAssertEqual(error, YumemiWeatherError.unknownError) } catch { XCTFail() }
The text was updated successfully, but these errors were encountered:
#81 は、当件を解消する PR です。
Sorry, something went wrong.
@es-kumagai #81 マージされたので閉じて良さそうですか?
ありがとうございます! 大丈夫です 🙇🏻♂️
Successfully merging a pull request may close this issue.
現在は API がときどき失敗するタイミングを外から制御できないため、テストのフローがランダムで変化する可能性がある。
それを想定したテストになっているものの、そのテストケースは次の2通りが、状況によって検査される(実行のたびに状況が変わり、そのときに片方は検査されない)
以下は、この件が該当するテストコードの1つ。
The text was updated successfully, but these errors were encountered: