map/mapParallel/forEach/forEachParallelのテストを拡充
テストの追加のみでsrcの変更は一切ない。
map/mapParallel/forEach/forEachParallelのそれぞれで以下を確認するテストを追加。
- 空配列が処理できる
- 複数の成功するタスクを処理できる
- エラーとスタックトレースが伝播する
- 成功とエラーが混在する場合エラーになる
- 最初に発生したエラーが伝播する
Step 1. Fetch and check out the branch for this merge request
git fetch origin git checkout -b "AddAsyncStreamTests" "origin/AddAsyncStreamTests"
Step 2. Review the changes locally
Step 3. Merge the branch and fix any conflicts that come up
git fetch origin git checkout "master" git merge --no-ff "AddAsyncStreamTests"
Step 4. Push the result of the merge to GitLab
git push origin "master"
Note that pushing to GitLab requires write access to this repository.
Tip: You can also checkout merge requests locally by following these guidelines.
テストの追加のみでsrcの変更は一切ない。
map/mapParallel/forEach/forEachParallelのそれぞれで以下を確認するテストを追加。