• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lucaslorentz / durabletask-extensions / 6834079100

11 Nov 2023 12:05PM UTC coverage: 82.326%. Remained the same
6834079100

push

github

web-flow
Merge branch 'main' into add-limit-to-purge-with-filter

2357 of 2863 relevant lines covered (82.33%)

139.72 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/LLL.DurableTask.EFCore/Extensions/TaskExtensions.cs
1
using System.Collections.Generic;
2
using System.Threading.Tasks;
3

4
namespace LLL.DurableTask.EFCore.Extensions;
5

6
public static class TaskExtensions
7
{
8
    public static async Task<List<T>> WhenAllSerial<T>(this IEnumerable<Task<T>> tasks)
9
    {
10
        var result = new List<T>();
×
11
        foreach (var task in tasks)
×
12
        {
13
            result.Add(await task);
×
14
        }
15
        return result;
×
16
    }
17
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc