< Summary - ReFlex - Library

Information
Class: ReFlex.Core.Common.Util.ProcessPerformance
Assembly: ReFlex.Core.Common
File(s): D:\a\reflex\reflex\library\src\Core\Common\Util\ProcessPerformance.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 20
Line coverage: 100%
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_Preparation()100%11100%
get_Update()100%11100%
get_ConvertDepthValue()100%11100%
get_Smoothing()100%11100%
get_ComputeExtremumType()100%11100%

File(s)

D:\a\reflex\reflex\library\src\Core\Common\Util\ProcessPerformance.cs

#LineLine coverage
 1using System;
 2
 3namespace ReFlex.Core.Common.Util
 4{
 5
 6    public struct ProcessPerformance
 7    {
 48        public TimeSpan Preparation { get; set; }
 9
 1310        public TimeSpan Update { get; set; }
 11
 412        public TimeSpan ConvertDepthValue { get; set; }
 13
 414        public TimeSpan Smoothing { get; set; }
 15
 416        public TimeSpan ComputeExtremumType { get; set; }
 17
 18
 19    }
 20}