• 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

0.0
/src/EntityFrameworkCore.Generator.Core/Scripts/ScriptVariablesBase.cs
1
using System.Text;
2

3
using EntityFrameworkCore.Generator.Options;
4

5
namespace EntityFrameworkCore.Generator.Scripts;
6

7
public abstract class ScriptVariablesBase
8
{
UNCOV
9
    protected ScriptVariablesBase(GeneratorOptions generatorOptions, TemplateOptions templateOptions)
×
10
    {
11
        GeneratorOptions = generatorOptions ?? throw new ArgumentNullException(nameof(generatorOptions));
×
12
        TemplateOptions = templateOptions ?? throw new ArgumentNullException(nameof(templateOptions));
×
13
        CodeBuilder = new IndentedStringBuilder();
×
UNCOV
14
    }
×
15

16
    public TemplateOptions TemplateOptions { get; }
17

18
    public GeneratorOptions GeneratorOptions { get; }
19

20
    public IndentedStringBuilder CodeBuilder { get; }
21
}
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