< Summary

Class:MUNity.Schema.Conference.CreateDelegationResponse
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Conference\CreateDelegationRequest.cs
Covered lines:0
Uncovered lines:1
Coverable lines:1
Total lines:22
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_NewDelegationId()100%10%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Conference
 6{
 7    public class CreateDelegationRequest
 8    {
 9        public string ConferenceId { get; set; }
 10
 11        public string DelegationName { get; set; }
 12
 13        public string DelegationFullName { get; set; }
 14
 15        public string DelegationShort { get; set; }
 16    }
 17
 18    public class CreateDelegationResponse : AbstractResponse
 19    {
 020        public string NewDelegationId { get; set; }
 21    }
 22}

Methods/Properties

get_NewDelegationId()