< Summary - ReFlex - Library

Information
Class: ReFlex.Core.Common.Util.RecordingStateUpdate
Assembly: ReFlex.Core.Common
File(s): D:\a\reflex\reflex\library\src\Core\Common\Util\RecordingStateUpdate.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 9
Coverable lines: 9
Total lines: 18
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_State()100%210%
get_FramesRecorded()100%210%
get_SessionName()100%210%
.ctor(...)100%210%

File(s)

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

#LineLine coverage
 1namespace ReFlex.Core.Common.Util
 2{
 3    public class RecordingStateUpdate
 4    {
 05        public RecordingState State { get; }
 6
 07        public int FramesRecorded { get; }
 8
 09        public string SessionName { get; }
 10
 011        public RecordingStateUpdate(RecordingState state, int framesRecorded, string sessionName)
 012        {
 013            State = state;
 014            FramesRecorded = framesRecorded;
 015            SessionName = sessionName;
 016        }
 17    }
 18}