< Summary - SonghayCore

Information
Class: Songhay.Models.ColorDisplayItemModel
Assembly: SonghayCore
File(s): /home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/ColorDisplayItemModel.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 21
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_BackgroundHex()100%10%
get_ForegroundHex()100%10%

File(s)

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

#LineLine coverage
 1namespace Songhay.Models;
 2
 3/// <summary>
 4/// Model for color display
 5/// </summary>
 6public class ColorDisplayItemModel : DisplayItemModel, IColorable
 7{
 8    #region IColorable members:
 9
 10    /// <summary>
 11    /// Gets or sets the background hexadecimal value.
 12    /// </summary>
 013    public string? BackgroundHex { get; set; }
 14
 15    /// <summary>
 16    /// Gets or sets the foreground hexadecimal value.
 17    /// </summary>
 018    public string? ForegroundHex { get; set; }
 19
 20    #endregion
 21}