< Summary

Class:MUNity.Database.Models.LoS.ListOfSpeakersLog
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Speakerlists\ListOfSpeakersLog.cs
Covered lines:0
Uncovered lines:12
Coverable lines:12
Total lines:32
Line coverage:0% (0 of 12)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:12
Method coverage:0% (0 of 12)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_ListOfSpeakersLogId()100%10%
get_Speakerlist()100%10%
get_SpeakerIso()100%10%
get_SpeakerName()100%10%
get_PermitedSpeakingSeconds()100%10%
get_PermitedQuestionsSeconds()100%10%
get_UsedSpeakerSeconds()100%10%
get_UsedQuestionSeconds()100%10%
get_TimesOnSpeakerlist()100%10%
get_TimesOnQuestions()100%10%
get_TimesSpeaking()100%10%
get_TimesQuestioning()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Speakerlists\ListOfSpeakersLog.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace MUNity.Database.Models.LoS;
 7
 8public class ListOfSpeakersLog
 9{
 010    public long ListOfSpeakersLogId { get; set; }
 11
 012    public ListOfSpeakers Speakerlist { get; set; }
 13
 014    public string SpeakerIso { get; set; }
 15
 016    public string SpeakerName { get; set; }
 17
 018    public long PermitedSpeakingSeconds { get; set; }
 19
 020    public long PermitedQuestionsSeconds { get; set; }
 21
 022    public long UsedSpeakerSeconds { get; set; }
 023    public long UsedQuestionSeconds { get; set; }
 24
 025    public int TimesOnSpeakerlist { get; set; }
 26
 027    public int TimesOnQuestions { get; set; }
 28
 029    public int TimesSpeaking { get; set; }
 30
 031    public int TimesQuestioning { get; set; }
 32}