< Summary

Class:MUNity.Schema.Conference.UserApplicationDelegation
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Conference\UserApplicationInfo.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:28
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:2
Method coverage:0% (0 of 2)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_DelegationId()100%10%
get_DelegationName()100%10%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Conference
 6{
 7    public class UserApplicationInfo
 8    {
 9        public int ApplicationId { get; set; }
 10
 11        public string ConferenceId { get; set; }
 12
 13        public string ConferenceName { get; set; }
 14
 15        public string ConferenceFullName { get; set; }
 16
 17        public string ConferenceShort { get; set; }
 18
 19        public List<UserApplicationDelegation> Delegations { get; set; }
 20    }
 21
 22    public class UserApplicationDelegation
 23    {
 024        public string DelegationId { get; set; }
 25
 026        public string DelegationName { get; set; }
 27    }
 28}