< Summary

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

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation
 6{
 7    /// <summary>
 8    /// Response of creating a Simulation. The creation will automatically create a first user
 9    /// this response will return the Id, password and a token for this first user.
 10    /// </summary>
 11    public class CreateSimulationResponse
 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 (Display Name)
 20        /// </summary>
 021        public string SimulationName { get; set; }
 22
 23        /// <summary>
 24        /// The user of the first user that was added. This is the owner and the user has the owner auth of this
 25        /// simulation.
 26        /// </summary>
 027        public string FirstUserId { get; set; }
 28
 29        /// <summary>
 30        /// The inital password of the owner.
 31        /// </summary>
 032        public string FirstUserPassword { get; set; }
 33
 34        /// <summary>
 35        /// The user token of the owner.
 36        /// </summary>
 037        public string FirstUserToken { get; set; }
 38    }
 39}