< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_SimulationUserId()100%10%
get_Token()100%10%
get_DisplayName()100%10%
get_SimulationId()100%10%
get_SimulationName()100%10%
get_RoleName()100%10%
get_RoleIso()100%10%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation
 6{
 7    public class InvitationResponse
 8    {
 09        public int SimulationUserId { get; set; }
 10
 011        public string Token { get; set; }
 12
 013        public string DisplayName { get; set; }
 14
 015        public int SimulationId { get; set; }
 16
 017        public string SimulationName { get; set; }
 18
 019        public string RoleName { get; set; }
 20
 021        public string RoleIso { get; set; }
 22    }
 23}