< Summary

Class:MUNity.Schema.Simulation.SimulationTokenResponse
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\SimulationTokenResponse.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_Token()100%10%
get_Pin()100%10%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation
 6{
 7    /// <summary>
 8    /// A response you get when Joining a Simulation.
 9    /// </summary>
 10    public class SimulationTokenResponse
 11    {
 12        /// <summary>
 13        /// The Id of the simulation.
 14        /// </summary>
 015        public int SimulationId { get; set; }
 16
 17        /// <summary>
 18        /// The name of the simulation.
 19        /// </summary>
 020        public string Name { get; set; }
 21
 22        /// <summary>
 23        /// The token of the simulation. You will be identified with this token.
 24        /// </summary>
 025        public string Token { get; set; }
 26
 27        /// <summary>
 28        /// The user pin. This is used when your token is lost and you want to claim that you are a specific SimulationU
 29        /// later.
 30        /// </summary>
 031        public string Pin { get; set; }
 32    }
 33}