< Summary

Class:MUNity.Schema.Simulation.SimulationInfo
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\SimulationInfo.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:20
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_SlotCount()100%10%
get_RolesCount()100%10%

File(s)

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

#LineLine coverage
 1using MUNity.Base;
 2using System;
 3using System.Collections.Generic;
 4using System.Text;
 5
 6namespace MUNity.Schema.Simulation
 7{
 8    public class SimulationInfo
 9    {
 010        public int SimulationId { get; set; }
 11
 012        public string Name { get; set; }
 13
 014        public GamePhases Phase { get; set; }
 15
 016        public int SlotCount { get; set; }
 17
 018        public int RolesCount { get; set; }
 19    }
 20}