< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_Name()100%10%
get_Description()100%10%
get_Reference()100%10%
get_Ruling()100%10%
get_Category()100%10%

File(s)

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

#LineLine coverage
 1using MUNity.Base;
 2using System;
 3using System.Collections.Generic;
 4using System.Text;
 5
 6namespace MUNity.Schema.Simulation
 7{
 8    public class CreatePetitionTypeRequest : SimulationRequest
 9    {
 10        /// <summary>
 11        /// A Name to Display this petition. For example: Right of information.
 12        /// </summary>
 013        public string Name { get; set; }
 14
 15        /// <summary>
 16        /// More information to give about this petition type
 17        /// </summary>
 018        public string Description { get; set; }
 19
 20        /// <summary>
 21        /// A Reference to where you get more information about this petition. This could be a link or
 22        /// a name of the paragraph insiide the rules of procedure.
 23        /// </summary>
 024        public string Reference { get; set; }
 25
 26        /// <summary>
 27        /// How do you get to vote on this Petitiontype
 28        /// </summary>
 029        public PetitionRulings Ruling { get; set; }
 30
 31        /// <summary>
 32        /// A category for the petitiontype
 33        /// </summary>
 034        public string Category { get; set; }
 35    }
 36}