< Summary

Class:MUNity.Schema.Conference.ApplicationDelegationRoleSlot
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Conference\ApplicationAvailableDelegation.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:28
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_RoleName()100%10%
get_CommitteeName()100%10%
get_Costs()100%10%
get_CountryName()100%10%
get_CountryIso()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Conference\ApplicationAvailableDelegation.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Conference
 6{
 7    public class ApplicationAvailableDelegation
 8    {
 9        public string DelegationId { get; set; }
 10
 11        public string Name { get; set; }
 12
 13        public List<ApplicationDelegationRoleSlot> Roles { get; set; }
 14    }
 15
 16    public class ApplicationDelegationRoleSlot
 17    {
 018        public string RoleName { get; set; }
 19
 020        public string CommitteeName { get; set; }
 21
 022        public decimal Costs { get; set; }
 23
 024        public string CountryName { get; set; }
 25
 026        public string CountryIso { get; set; }
 27    }
 28}