< Summary

Class:MUNity.Schema.Simulation.Resolution.ResolutionSmallInfo
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\Resolution\ResolutionSmallInfo.cs
Covered lines:0
Uncovered lines:9
Coverable lines:9
Total lines:28
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_ResolutionId()100%10%
get_LastChangedTime()100%10%
get_Name()100%10%
get_AllowPublicEdit()100%10%
get_AllowAmendments()100%10%
get_SubmitterName()100%10%
get_PreambleParagraphCount()100%10%
get_OperativeParagraphCount()100%10%
get_AmendmentCount()100%10%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation.Resolution
 6{
 7    public class ResolutionSmallInfo
 8    {
 9
 010        public string ResolutionId { get; set; }
 11
 012        public DateTime LastChangedTime {get; set; }
 13
 014        public string Name { get; set; }
 15
 016        public bool AllowPublicEdit { get; set; }
 17
 018        public bool AllowAmendments { get; set; }
 19
 020        public string SubmitterName { get; set; }
 21
 022        public int PreambleParagraphCount { get; set; }
 23
 024        public int OperativeParagraphCount { get; set; }
 25
 026        public int AmendmentCount { get; set; }
 27    }
 28}