< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_SimulationPresentsId()100%10%
get_Simulation()100%10%
get_CreatedTime()100%10%
get_CheckedDate()100%10%
get_CheckedUsers()100%10%
get_MarkedFinished()100%10%
.ctor()100%10%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace MUNity.Database.Models.Simulation;
 7
 8public class SimulationPresents
 9{
 010    public int SimulationPresentsId { get; set; }
 11
 012    public Simulation Simulation { get; set; }
 13
 014    public DateTime CreatedTime { get; set; }
 15
 016    public DateTime? CheckedDate { get; set; } = null;
 17
 018    public ICollection<PresentsState> CheckedUsers { get; set; }
 19
 020    public bool MarkedFinished { get; set; }
 21
 022    public SimulationPresents()
 023    {
 024        CreatedTime = DateTime.Now;
 025    }
 26}