< Summary

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

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation
 6{
 7    /// <summary>
 8    /// Message Body to subscribe to a simulation and be added into the WebSocket-Group.
 9    /// the socket will be named sim_[SimulationId].
 10    /// </summary>
 11    public class SubscribeSimulation : SimulationRequest
 12    {
 13        /// <summary>
 14        /// The SignalR ConnectionId that should be added to the group.
 15        /// </summary>
 016        public string ConnectionId { get; set; }
 17    }
 18}

Methods/Properties

get_ConnectionId()