< Summary

Class:MUNityCore.Dtos.Simulations.OldVotingDto
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Dtos\Simulations\OldVotingDto.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:20
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_ProCount()100%10%
get_ConCount()100%10%
get_AbstentionCount()100%10%
get_NotVotedCount()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Dtos\Simulations\OldVotingDto.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 OldVotingDto
 9    {
 010        public string Name { get; set; }
 11
 012        public int ProCount { get; set; }
 13
 014        public int ConCount { get; set; }
 15
 016        public int AbstentionCount { get; set; }
 17
 018        public int NotVotedCount { get; set; }
 19    }
 20}