< Summary

Class:MUNity.Database.Models.Conference.ConferenceFillApplicationFieldInput
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\ConferenceFillApplicationFieldInput.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:14
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_ConferenceFillApplicationFieldInputId()100%10%
get_Application()100%10%
get_Field()100%10%
get_Value()100%10%
get_ValueSecondary()100%10%

File(s)

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

#LineLine coverage
 1namespace MUNity.Database.Models.Conference;
 2
 3public class ConferenceFillApplicationFieldInput
 4{
 05    public long ConferenceFillApplicationFieldInputId { get; set; }
 6
 07    public FillApplication Application { get; set; }
 8
 09    public ConferenceApplicationField Field { get; set; }
 10
 011    public string Value { get; set; }
 12
 013    public string ValueSecondary { get; set; }
 14}