< Summary

Class:MUNity.Database.Models.Simulation.PetitionTemplateEntry
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Simulation\PetitionTemplateEntry.cs
Covered lines:0
Uncovered lines:9
Coverable lines:9
Total lines:24
Line coverage:0% (0 of 9)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:9
Method coverage:0% (0 of 9)

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%
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\MUNityDatabase\Models\Simulation\PetitionTemplateEntry.cs

#LineLine coverage
 1using MUNity.Base;
 2
 3namespace MUNity.Database.Models.Simulation;
 4
 5public class PetitionTemplateEntry
 6{
 07    public string Name { get; set; }
 8
 09    public string Description { get; set; }
 10
 011    public string Reference { get; set; }
 12
 013    public PetitionRulings Ruling { get; set; }
 14
 015    public string Category { get; set; }
 16
 017    public bool AllowChairs { get; set; }
 18
 019    public bool AllowDelegates { get; set; }
 20
 021    public bool AllowNgo { get; set; }
 22
 023    public bool AllowSpectator { get; set; }
 24}