< Summary - SonghayCore

Information
Class: Songhay.Models.XhtmlImage
Assembly: SonghayCore
File(s): /home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/XhtmlImage.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 32
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_Location()100%10%
get_Height()100%10%
get_HeightInPixels()100%10%
get_Width()100%10%
get_WidthInPixels()100%10%

File(s)

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

#LineLine coverage
 1namespace Songhay.Models;
 2
 3/// <summary>
 4/// Defines an image used by XHTML(5) clients
 5/// </summary>
 6public class XhtmlImage
 7{
 8    /// <summary>
 9    /// Gets or sets the location.
 10    /// </summary>
 011    public Uri? Location { get; set; }
 12
 13    /// <summary>
 14    /// Gets or sets the height.
 15    /// </summary>
 016    public string? Height { get; set; }
 17
 18    /// <summary>
 19    /// Gets or sets the height in pixels.
 20    /// </summary>
 021    public int? HeightInPixels { get; set; }
 22
 23    /// <summary>
 24    /// Gets or sets the width.
 25    /// </summary>
 026    public string? Width { get; set; }
 27
 28    /// <summary>
 29    /// Gets or sets the width in pixels.
 30    /// </summary>
 031    public int? WidthInPixels { get; set; }
 32}