< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_PetitionTypeId()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\AddPetitionTypeRequestBody.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation.Managment
 6{
 7    public class AddPetitionTypeRequestBody : SimulationRequest
 8    {
 09        public int PetitionTypeId { get; set; }
 10
 011        public int OrderIndex { get; set; } = -1;
 12
 013        public bool AllowChairs { get; set; } = false;
 14
 015        public bool AllowDelegates { get; set; } = true;
 16
 017        public bool AllowNgo { get; set; } = false;
 18
 019        public bool AllowSpectator { get; set; } = false;
 20    }
 21}