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

loresoft / FluentCommand / 10891700765

16 Sep 2024 08:36PM UTC coverage: 54.514%. First build
10891700765

push

github

pwelter34
add GenerateReaderAttribute

1672 of 3548 branches covered (47.13%)

Branch coverage included in aggregate %.

37 of 131 new or added lines in 9 files covered. (28.24%)

4221 of 7262 relevant lines covered (58.12%)

229.05 hits per line

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

0.0
/src/FluentCommand/Attributes/GenerateReaderAttribute.cs
1
using System.Diagnostics;
2

3
namespace FluentCommand.Attributes;
4

5
/// <summary>
6
/// Source generate a data reader for the specified type
7
/// </summary>
8
/// <param name="type">The type to generate a data reader for</param>
9
[Conditional("FLUENTCOMMAND_GENERATOR")]
10
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Interface | AttributeTargets.Module, AllowMultiple = true)]
NEW
11
public class GenerateReaderAttribute(Type type) : Attribute
×
12
{
NEW
13
    public Type Type { get; } = type ?? throw new ArgumentNullException(nameof(type));
×
14
}
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