< Summary

Information
Class: ReportingServices.Shared.Models.ProductionReport.YieldInformation
Assembly: ReportingServices.Shared
File(s): C:\Users\wathen\source\repos\ReportingServices\ReportingServices.Shared\Models\ProductionReport\YieldInformation.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 17
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_Outs()100%10%
get_Scrap()100%10%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Text;
 5using System.Text.Json.Serialization;
 6using System.Threading.Tasks;
 7
 8namespace ReportingServices.Shared.Models.ProductionReport
 9{
 10    public class YieldInformation
 11    {
 12        [JsonPropertyName("Outs")]
 013        public List<ReactorOutsByRDS> Outs { get; set; }
 14        [JsonPropertyName("Scrap")]
 015        public List<ScrapByDay> Scrap { get; set; }
 16    }
 17}

Methods/Properties

get_Outs()
get_Scrap()