< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.ComponentModel.DataAnnotations;
 4using System.Text;
 5
 6namespace MUNity.Schema.Simulation
 7{
 8    public class SetSimulationStatusDto : SimulationRequest
 9    {
 10        [Required]
 011        public string StatusText { get; set; }
 12    }
 13}

Methods/Properties

get_StatusText()