< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_Title()100%1100%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.ComponentModel.DataAnnotations;
 4using System.ComponentModel.DataAnnotations.Schema;
 5using System.Linq;
 6using System.Runtime.Serialization;
 7using System.Threading.Tasks;
 8
 9namespace MUNity.Database.Models.Conference.Roles;
 10
 11/// <summary>
 12/// The Secretary General Role is one of the most important roles of the conference.
 13/// You are technically able to create more than one of this roles.
 14/// </summary>
 15public class ConferenceSecretaryGeneralRole : AbstractConferenceRole
 16{
 17
 18    /// <summary>
 19    /// The Title of this role for Example:
 20    /// His Excellence the Secretary General.
 21    /// </summary>
 22    [MaxLength(250)]
 123    public string Title { get; set; }
 24
 25}

Methods/Properties

get_Title()