< Summary

Class:MUNityCore.Dtos.Simulations.AgendaItemInfo
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Dtos\Simulations\AgendaItemInfo.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:18
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:4
Method coverage:0% (0 of 4)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_AgendaItemId()100%10%
get_Name()100%10%
get_Description()100%10%
get_PetitionCount()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Dtos\Simulations\AgendaItemInfo.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace MUNityCore.Dtos.Simulations
 7{
 8    public class AgendaItemInfo
 9    {
 010        public int AgendaItemId { get; set; }
 11
 012        public string Name { get; set; }
 13
 014        public string Description { get; set; }
 15
 016        public int PetitionCount { get; set; }
 17    }
 18}