< Summary - SonghayCore

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

File(s)

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

#LineLine coverage
 1namespace Songhay.Models;
 2
 3/// <summary>
 4/// Collects <see cref="XhtmlDocument"/>.
 5/// </summary>
 6[Serializable]
 7public class XhtmlDocuments
 8{
 9    /// <summary>
 10    /// Gets or sets the documents.
 11    /// </summary>
 12    [XmlElement("XhtmlDocument")]
 13    [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays",
 14        Justification = "Used for XML serialization.")]
 015    public XhtmlDocument[] Documents { get; set; } = Enumerable.Empty<XhtmlDocument>().ToArray();
 16
 17    /// <summary>
 18    /// Gets or sets the title.
 19    /// </summary>
 20    [XmlAttribute]
 021    public string? Title { get; set; }
 22}

Methods/Properties

get_Documents()
get_Title()