< Summary

Class:MUNity.Database.Models.Conference.DelegationApplicationPickedDelegationUserWish
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\DelegationApplicationPickedDelegationUserWish.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:20
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_DelegationApplicationPickedDelegationUserWishId()100%10%
get_DelegationApplicationPickedDelegation()100%10%
get_UserEntry()100%10%
get_Role()100%10%
get_Prio()100%10%
get_Comment()100%10%

File(s)

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

#LineLine coverage
 1using MUNity.Database.Models.Conference.Roles;
 2
 3namespace MUNity.Database.Models.Conference
 4{
 5    public class DelegationApplicationPickedDelegationUserWish
 6    {
 07        public long DelegationApplicationPickedDelegationUserWishId { get; set; }
 8
 09        public DelegationApplicationPickedDelegation DelegationApplicationPickedDelegation { get; set; }
 10
 11
 012        public DelegationApplicationUserEntry UserEntry { get; set; }
 13
 014        public ConferenceDelegateRole Role { get; set; }
 15
 016        public byte Prio { get; set; }
 17
 018        public string Comment { get; set; }
 19    }
 20}