< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_PetitionTypeSimulationId()100%10%
get_TypeName()100%10%
get_TypeDescription()100%10%
get_TypeReference()100%10%
get_TypeRuling()100%10%
get_TypeCategory()100%10%
get_OrderIndex()100%10%
get_AllowChairs()100%10%
get_AllowDelegates()100%10%
get_AllowNgo()100%10%
get_AllowSpectator()100%10%

File(s)

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

#LineLine coverage
 1using MUNity.Base;
 2using System;
 3using System.Collections.Generic;
 4using System.Text;
 5using static MUNity.Schema.Simulation.PetitionTypeDto;
 6
 7namespace MUNity.Schema.Simulation.Managment
 8{
 9    public class PossiblePetitionsResponse
 10    {
 011        public long PetitionTypeSimulationId { get; set; }
 12
 013        public string TypeName { get; set; }
 14
 015        public string TypeDescription { get; set; }
 16
 017        public string TypeReference { get; set; }
 18
 019        public PetitionRulings TypeRuling { get; set; }
 20
 021        public string TypeCategory { get; set; }
 22
 023        public int OrderIndex { get; set; }
 24
 025        public bool AllowChairs { get; set; }
 26
 027        public bool AllowDelegates { get; set; }
 28
 029        public bool AllowNgo { get; set; }
 30
 031        public bool AllowSpectator { get; set; }
 32    }
 33}