< Summary - SonghayCore

Information
Class: Songhay.Models.SystemVariable<T>
Assembly: SonghayCore
File(s): /home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/SystemVariableOfT.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 22
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_VariableName()100%10%
get_VariableDescription()100%10%
get_VariableValue()100%10%

File(s)

/home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/SystemVariableOfT.cs

#LineLine coverage
 1namespace Songhay.Models;
 2
 3/// <summary>
 4/// Defines the Data for displaying meta-data about variables.
 5/// </summary>
 6public class SystemVariable<T>
 7{
 8    /// <summary>
 9    /// Gets or sets the name of the variable.
 10    /// </summary>
 011    public string? VariableName { get; set; }
 12
 13    /// <summary>
 14    /// Gets or sets the variable description.
 15    /// </summary>
 016    public string? VariableDescription { get; set; }
 17
 18    /// <summary>
 19    /// Gets or sets the variable value.
 20    /// </summary>
 021    public T? VariableValue { get; set; }
 22}