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

lucaslorentz / durabletask-extensions / 4431705642

pending completion
4431705642

push

github

Add support for registering activity methods from interfaces

2302 of 2777 relevant lines covered (82.9%)

142.05 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;
2
using System.Collections.Generic;
3
using System.Threading.Tasks;
4

5
namespace LLL.DurableTask.EFCore.Extensions
6
{
7
    public static class TaskExtensions
8
    {
9
        public static async Task<List<T>> WhenAllSerial<T>(this IEnumerable<Task<T>> tasks)
10
        {
11
            var result = new List<T>();
×
12
            foreach (var task in tasks)
×
13
            {
14
                result.Add(await task);
×
15
            }
16
            return result;
×
17
        }
18
    }
19
}
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

© 2026 Coveralls, Inc