< Summary

Class:MUNity.Database.Models.Conference.DelegationApplicationUserEntry
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\DelegationApplicationUserEntry.cs
Covered lines:5
Uncovered lines:1
Coverable lines:6
Total lines:20
Line coverage:83.3% (5 of 6)
Covered branches:0
Total branches:0
Covered methods:5
Total methods:6
Method coverage:83.3% (5 of 6)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_DelegationApplicationUserEntryId()100%10%
get_Application()100%1100%
get_User()100%1100%
get_Status()100%1100%
get_CanWrite()100%1100%
get_Message()100%1100%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\DelegationApplicationUserEntry.cs

#LineLine coverage
 1using MUNity.Base;
 2using MUNity.Database.Models.User;
 3
 4namespace MUNity.Database.Models.Conference
 5{
 6    public class DelegationApplicationUserEntry
 7    {
 08        public int DelegationApplicationUserEntryId { get; set; }
 9
 310        public DelegationApplication Application { get; set; }
 11
 412        public MunityUser User { get; set; }
 13
 314        public DelegationApplicationUserEntryStatuses Status { get; set; }
 15
 316        public bool CanWrite { get; set; }
 17
 118        public string Message { get; set; }
 19    }
 20}