< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_SimulationId()100%10%
get_DisplayName()100%10%
get_AllowAbstention()100%10%
get_AllowNgoVote()100%10%
get_PresentsId()100%10%
get_VoteExceptions()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\Voting\NewVotingSocketDto.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation.Voting
 6{
 7    public class NewVotingSocketDto
 8    {
 09        public int SimulationId { get; set; }
 10
 011        public string DisplayName { get; set; }
 12
 013        public bool AllowAbstention { get; set; } = false;
 14
 015        public bool AllowNgoVote { get; set; } = false;
 16
 017        public int PresentsId { get; set; } = -1;
 18
 019        public List<int> VoteExceptions { get; set; } = new List<int>();
 20    }
 21}