< Summary

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

Metrics

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

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\SimulationListItemDto.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 the API will give you when asking for a lis of simulations.
 10    /// </summary>
 11    public class SimulationListItemDto
 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        /// Is the simulation using a password.
 25        /// </summary>
 026        public bool UsingPassword { get; set; }
 27
 28        /// <summary>
 29        /// The current phase of the simulation.
 30        /// </summary>
 031        public GamePhases Phase { get; set; }
 32    }
 33}