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

loresoft / EntityFrameworkCore.Generator / 27730465225

18 Jun 2026 01:21AM UTC coverage: 74.693% (+19.8%) from 54.885%
27730465225

push

github

pwelter34
update tests

922 of 1609 branches covered (57.3%)

Branch coverage included in aggregate %.

7 of 7 new or added lines in 2 files covered. (100.0%)

230 existing lines in 23 files now uncovered.

4007 of 4990 relevant lines covered (80.3%)

1258.69 hits per line

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

33.33
/src/EntityFrameworkCore.Generator.Core/Metadata/Generation/MethodCollection.cs
1
namespace EntityFrameworkCore.Generator.Metadata.Generation;
2

3
/// <summary>
4
/// A collection of <see cref="Method"/> instances
5
/// </summary>
6
public class MethodCollection
7
    : List<Method>
8
{
9
    /// <summary>
10
    /// Initializes a new instance of the <see cref="MethodCollection"/> class.
11
    /// </summary>
12
    public MethodCollection()
170✔
13
    {
14
    }
170✔
15

16
    /// <summary>
17
    /// Initializes a new instance of the <see cref="MethodCollection"/> class.
18
    /// </summary>
19
    /// <param name="collection">The collection whose elements are copied to the new list.</param>
UNCOV
20
    public MethodCollection(IEnumerable<Method> collection) : base(collection)
×
21
    {
22
    }
×
23

24
    /// <summary>
25
    /// Initializes a new instance of the <see cref="MethodCollection"/> class.
26
    /// </summary>
27
    /// <param name="capacity">The number of elements that the new list can initially store.</param>
UNCOV
28
    public MethodCollection(int capacity) : base(capacity)
×
29
    {
30
    }
×
31

32
    /// <summary>
33
    /// Gets or sets a value indicating whether this instance is processed.
34
    /// </summary>
35
    /// <value>
36
    ///   <c>true</c> if this instance is processed; otherwise, <c>false</c>.
37
    /// </value>
38
    public bool IsProcessed { get; set; }
39
}
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