< Summary

Class:MUNity.Database.Models.Simulation.PresentsState
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Simulation\PresentsState.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:26
Line coverage:0% (0 of 6)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:6
Method coverage:0% (0 of 6)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_PresentsStateId()100%10%
get_SimulationPresents()100%10%
get_SimulationUser()100%10%
get_State()100%10%
get_StateValue()100%10%
get_RegistertTimestamp()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Simulation\PresentsState.cs

#LineLine coverage
 1using System;
 2
 3namespace MUNity.Database.Models.Simulation;
 4
 5public class PresentsState
 6{
 7    public enum PresentsStates
 8    {
 9        NotChecked,
 10        Present,
 11        Absent,
 12        Late
 13    }
 14
 015    public int PresentsStateId { get; set; }
 16
 017    public SimulationPresents SimulationPresents { get; set; }
 18
 019    public SimulationUser SimulationUser { get; set; }
 20
 021    public PresentsStates State { get; set; }
 22
 023    public string StateValue { get; set; }
 24
 025    public DateTime? RegistertTimestamp { get; set; }
 26}