< Summary

Class:MUNity.Schema.Simulation.SimulationUserAdminDto
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\UserManagment\SimulationUserAdminDto.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:23
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:2
Method coverage:0% (0 of 2)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_PublicId()100%10%
get_Password()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\UserManagment\SimulationUserAdminDto.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation
 6{
 7    /// <summary>
 8    /// User Package for the administrators that can see and edit the users.
 9    /// </summary>
 10    public class SimulationUserAdminDto : SimulationUserDefaultDto
 11    {
 12
 13        /// <summary>
 14        /// The Public Id of the user.
 15        /// </summary>
 016        public string PublicId { get; set; }
 17
 18        /// <summary>
 19        /// The password of the user.
 20        /// </summary>
 021        public string Password { get; set; }
 22    }
 23}

Methods/Properties

get_PublicId()
get_Password()