< Summary - SonghayCore

Information
Class: Songhay.Models.XhtmlDocument
Assembly: SonghayCore
File(s): /home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/XhtmlDocument.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 26
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_Header()100%10%
get_Title()100%10%

File(s)

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

#LineLine coverage
 1namespace Songhay.Models;
 2
 3/// <summary>
 4/// Defines the conventional XHTML Document.
 5/// </summary>
 6[Serializable]
 7public class XhtmlDocument
 8{
 9    /// <summary>
 10    /// Gets or sets the location.
 11    /// </summary>
 12    [XmlAttribute]
 013    public string? Location { get; set; }
 14
 15    /// <summary>
 16    /// Gets or sets the header.
 17    /// </summary>
 18    [XmlAttribute]
 019    public string? Header { get; set; }
 20
 21    /// <summary>
 22    /// Gets or sets the title.
 23    /// </summary>
 24    [XmlAttribute]
 025    public string? Title { get; set; }
 26}