< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_SimulationStatusId()100%10%
get_StatusText()100%10%
get_StatusTime()100%10%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation
 6{
 7    public class SimulationStatusDto
 8    {
 09        public int SimulationStatusId { get; set; }
 10
 011        public string StatusText { get; set; }
 12
 013        public DateTime StatusTime { get; set; }
 14    }
 15}