< Summary

Class:MUNity.Schema.Simulation.SimulationSlotDto
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\SimulationSlot.cs
Covered lines:0
Uncovered lines:11
Coverable lines:11
Total lines:32
Line coverage:0% (0 of 11)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:11
Method coverage:0% (0 of 11)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_SimulationUserId()100%10%
get_DisplayName()100%10%
get_RoleId()100%10%
get_RoleName()100%10%
get_RoleIso()100%10%
get_RoleType()100%10%
get_IsOnline()100%10%
get_CanCreateRole()100%10%
get_CanSelectRole()100%10%
get_CanEditResolution()100%10%
get_CanEditListOfSpeakers()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\SimulationSlot.cs

#LineLine coverage
 1using MUNity.Base;
 2using System;
 3using System.Collections.Generic;
 4using System.Text;
 5
 6namespace MUNity.Schema.Simulation
 7{
 8    public class SimulationSlotDto
 9    {
 010        public int SimulationUserId { get; set; }
 11
 012        public string DisplayName { get; set; }
 13
 014        public int RoleId { get; set; }
 15
 016        public string RoleName { get; set; }
 17
 018        public string RoleIso { get; set; }
 19
 020        public RoleTypes RoleType { get; set; }
 21
 022        public bool IsOnline { get; set; }
 23
 024        public bool CanCreateRole { get; set; }
 25
 026        public bool CanSelectRole { get; set; }
 27
 028        public bool CanEditResolution { get; set; }
 29
 030        public bool CanEditListOfSpeakers { get; set; }
 31    }
 32}