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

lucaslorentz / durabletask-extensions / 6834083910

11 Nov 2023 12:06PM UTC coverage: 82.326% (+1.6%) from 80.766%
6834083910

Pull #32

github

lucaslorentz
Add limit to purge with filter
Pull Request #32: Add limit to purge with filter

79 of 81 new or added lines in 9 files covered. (97.53%)

2357 of 2863 relevant lines covered (82.33%)

138.93 hits per line

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

66.67
/src/LLL.DurableTask.EFCore/Helpers/ParametersCollection.cs
1
using System.Collections;
2
using System.Collections.Generic;
3

4
namespace LLL.DurableTask.EFCore;
5

6
public class ParametersCollection : IEnumerable<object>
7
{
8
    private readonly List<object> _values = new();
3✔
9

10
    public string Add(object value)
11
    {
12
        _values.Add(value);
33✔
13
        return $"{{{_values.Count - 1}}}";
33✔
14
    }
15

16
    public object[] ToArray()
17
    {
NEW
18
        return _values.ToArray();
×
19
    }
20

21
    public IEnumerator<object> GetEnumerator()
22
    {
23
        return _values.GetEnumerator();
3✔
24
    }
25

26
    IEnumerator IEnumerable.GetEnumerator()
27
    {
NEW
28
        return _values.GetEnumerator();
×
29
    }
30
}
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