< Summary

Information
Class: ReportingServices.UI.Models.ErrorViewModel
Assembly: ReportingServices.UI
File(s): C:\Users\wathen\source\repos\ReportingServices\ReportingServices.UI\Models\ErrorViewModel.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 9
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_RequestId()100%10%
get_ShowRequestId()100%10%

File(s)

C:\Users\wathen\source\repos\ReportingServices\ReportingServices.UI\Models\ErrorViewModel.cs

#LineLine coverage
 1namespace ReportingServices.UI.Models
 2{
 3    public class ErrorViewModel
 4    {
 05        public string RequestId { get; set; }
 6
 07        public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
 8    }
 9}