< Summary

Information
Class: Infrastructure.Entity.shipper
Assembly: Infrastructure
File(s): /home/runner/work/Northwind-Api/Northwind-Api/src/Infrastructure/Entity/shipper.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 4
Coverable lines: 4
Total lines: 22
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_shipper_id()100%210%
get_company_name()100%210%
get_phone()100%210%
get_orders()100%210%

File(s)

/home/runner/work/Northwind-Api/Northwind-Api/src/Infrastructure/Entity/shipper.cs

#LineLine coverage
 1namespace Infrastructure.Entity;
 2#pragma warning disable CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserv
 3#pragma warning disable IDE1006 // Naming Styles
 4public partial class shipper {
 5#pragma warning restore IDE1006 // Naming Styles
 6#pragma warning restore CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserv
 7#pragma warning disable IDE1006 // Naming Styles
 08  public short shipper_id { get; set; }
 9#pragma warning restore IDE1006 // Naming Styles
 10
 11#pragma warning disable IDE1006 // Naming Styles
 012  public string company_name { get; set; } = null!;
 13#pragma warning restore IDE1006 // Naming Styles
 14
 15#pragma warning disable IDE1006 // Naming Styles
 016  public string? phone { get; set; }
 17#pragma warning restore IDE1006 // Naming Styles
 18
 19#pragma warning disable IDE1006 // Naming Styles
 020  public virtual ICollection<order> orders { get; set; } = [];
 21#pragma warning restore IDE1006 // Naming Styles
 22}