< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_SimulationId()100%10%
get_Name()100%10%
get_Phase()100%10%
get_Roles()100%10%
get_Users()100%10%

File(s)

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

#LineLine coverage
 1using MUNity.Base;
 2using System;
 3using System.Collections.Generic;
 4using System.Text;
 5
 6namespace MUNity.Schema.Simulation
 7{
 8    /// <summary>
 9    /// The schema you will get when asking for a simulation with a valid token.
 10    /// </summary>
 11    public class SimulationDto
 12    {
 13        /// <summary>
 14        /// the id of the simulation.
 15        /// </summary>
 016        public int SimulationId { get; set; }
 17
 18        /// <summary>
 19        /// The name of the simulation.
 20        /// </summary>
 021        public string Name { get; set; }
 22
 23        /// <summary>
 24        /// The current phase of the simulation.
 25        /// </summary>
 026        public GamePhases Phase { get; set; }
 27
 28        /// <summary>
 29        /// The roles of the simulation.
 30        /// </summary>
 031        public List<SimulationRoleDto> Roles { get; set; }
 32
 33        /// <summary>
 34        /// The users of the simulation.
 35        /// </summary>
 036        public List<SimulationUserDefaultDto> Users { get; set; }
 37    }
 38}