< Summary

Class:MUNity.Database.Models.Conference.ConferenceApplicationOptions
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\ConferenceApplicationOptions.cs
Covered lines:9
Uncovered lines:4
Coverable lines:13
Total lines:37
Line coverage:69.2% (9 of 13)
Covered branches:0
Total branches:0
Covered methods:9
Total methods:13
Method coverage:69.2% (9 of 13)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_ConferenceApplicationOptionsId()100%10%
get_ConferenceId()100%10%
get_Conference()100%1100%
get_IsActive()100%1100%
get_AllowDelegationApplication()100%1100%
get_AllowRoleApplication()100%1100%
get_AllowTeamApplication()100%10%
get_AllowDelegationWishApplication()100%1100%
get_AllowCountryWishApplication()100%1100%
get_AllowFilterByCommitteeType()100%10%
get_ApplicationStartDate()100%1100%
get_ApplicationEndDate()100%1100%
get_Formulas()100%1100%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Text;
 5using System.Threading.Tasks;
 6
 7namespace MUNity.Database.Models.Conference;
 8
 9public class ConferenceApplicationOptions
 10{
 011    public int ConferenceApplicationOptionsId { get; set; }
 12
 013    public string ConferenceId { get; set; }
 14
 115    public Conference Conference { get; set; }
 16
 17
 118    public bool IsActive { get; set; }
 19
 220    public bool AllowDelegationApplication { get; set; }
 21
 122    public bool AllowRoleApplication { get; set; }
 23
 024    public bool AllowTeamApplication { get; set; }
 25
 126    public bool AllowDelegationWishApplication { get; set; }
 27
 128    public bool AllowCountryWishApplication { get; set; }
 29
 030    public bool AllowFilterByCommitteeType { get; set; }
 31
 132    public DateTime? ApplicationStartDate { get; set; }
 33
 134    public DateTime? ApplicationEndDate { get; set; }
 35
 136    public ICollection<ConferenceApplicationFormula> Formulas { get; set; }
 37}