< Summary

Class:MUNity.Database.Models.Conference.ConferenceDelegationApplicationFieldInput
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\ConferenceDelegationApplicationFieldInput.cs
Covered lines:3
Uncovered lines:2
Coverable lines:5
Total lines:14
Line coverage:60% (3 of 5)
Covered branches:0
Total branches:0
Covered methods:3
Total methods:5
Method coverage:60% (3 of 5)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_ConferenceDelegationApplicationFieldInputId()100%10%
get_Application()100%1100%
get_Field()100%1100%
get_Value()100%1100%
get_ValueSecondary()100%10%

File(s)

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

#LineLine coverage
 1namespace MUNity.Database.Models.Conference;
 2
 3public class ConferenceDelegationApplicationFieldInput
 4{
 05    public long ConferenceDelegationApplicationFieldInputId { get; set; }
 6
 17    public DelegationApplication Application { get; set; }
 8
 19    public ConferenceApplicationField Field { get; set; }
 10
 111    public string Value { get; set; }
 12
 013    public string ValueSecondary { get; set; }
 14}