< Summary

Information
Class: ReportingServices.Shared.Models.ProductionReport.RDS
Assembly: ReportingServices.Shared
File(s): C:\Users\wathen\source\repos\ReportingServices\ReportingServices.Shared\Models\ProductionReport\RDS.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 18
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_Reactor()100%10%
get_ReactorType()100%10%
get_DateOut()100%10%
get_UnloadTemp()100%10%
get_LayerType()100%10%

File(s)

C:\Users\wathen\source\repos\ReportingServices\ReportingServices.Shared\Models\ProductionReport\RDS.cs

#LineLine coverage
 1using System.Text.Json.Serialization;
 2
 3namespace ReportingServices.Shared.Models.ProductionReport
 4{
 5    public class RDS
 6    {
 7        [JsonPropertyName("Reactor")]
 08        public int Reactor { get; set; }
 9        [JsonPropertyName("ReactorType")]
 010        public string ReactorType { get; set; }
 11        [JsonPropertyName("DateOut")]
 012        public DateTime DateOut { get; set; }
 13        [JsonPropertyName("UnloadTemp")]
 014        public int UnloadTemp { get; set; }
 15        [JsonPropertyName("LayerType")]
 016        public string LayerType { get; set; }
 17    }
 18}