< Summary

Class:MUNity.Schema.Simulation.UsersChangedEventArgs
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\Roles\UsersChangedEventArgs.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:22
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_SimulationId()100%10%
get_Users()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\Roles\UsersChangedEventArgs.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation
 6{
 7    /// <summary>
 8    /// Updates the user List
 9    /// </summary>
 10    public class UsersChangedEventArgs : EventArgs
 11    {
 12        /// <summary>
 13        /// The SimulationId that the user list has changed at
 14        /// </summary>
 015        public int SimulationId { get; set; }
 16
 17        /// <summary>
 18        /// The new List of users.
 19        /// </summary>
 020        public List<SimulationUserDefaultDto> Users { get; set; }
 21    }
 22}

Methods/Properties

get_SimulationId()
get_Users()