< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_Organization()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\Roles\ConferenceVisitorRole.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/// A visitor role is for someone who just wants to come to the conference
 13/// without being part of any of the other roles.
 14/// </summary>
 15public class ConferenceVisitorRole : AbstractConferenceRole
 16{
 17    [MaxLength(100)]
 018    public string Organization { get; set; }
 19
 20}

Methods/Properties

get_Organization()