< Summary

Class:MUNity.Schema.Conference.CommitteeSmallInfo
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Conference\CommitteeSmallInfo.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:32
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:4
Method coverage:0% (0 of 4)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_CommitteeId()100%10%
get_Name()100%10%
get_FullName()100%10%
get_CommitteeShort()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Conference\CommitteeSmallInfo.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Conference
 6{
 7    /// <summary>
 8    /// A structure given by the MUNity API when requesting small information of a committee.
 9    /// </summary>
 10    public class CommitteeSmallInfo
 11    {
 12        /// <summary>
 13        /// The id of the committee
 14        /// </summary>
 015        public string CommitteeId { get; set; }
 16
 17        /// <summary>
 18        /// The default display name of the committee. Like General Assembly, Generalversammlung
 19        /// </summary>
 020        public string Name { get; set; }
 21
 22        /// <summary>
 23        /// The long version of the name of the committee, like: United Nations General Assembly, MUN-SH 2021 Generalver
 24        /// </summary>
 025        public string FullName { get; set; }
 26
 27        /// <summary>
 28        /// A short name for the committee like: GA, GV
 29        /// </summary>
 030        public string CommitteeShort { get; set; }
 31    }
 32}