< Summary - SonghayCore

Information
Class: Songhay.Models.XObjectMetadata
Assembly: SonghayCore
File(s): /home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/XObjectMetadata.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 4
Coverable lines: 4
Total lines: 20
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
.cctor()100%10%
get_XhtmlDocTypeTransitional()100%10%

File(s)

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

#LineLine coverage
 1namespace Songhay.Models;
 2
 3/// <summary>
 4/// The conventional <see cref="XObject"/> metadata.
 5/// </summary>
 6public static class XObjectMetadata
 7{
 8    /// <summary>
 9    /// The sitemaps.org namespace.
 10    /// </summary>
 011    public static readonly XNamespace SiteMapNamespace = "http://www.sitemaps.org/schemas/sitemap/0.9";
 12
 13    /// <summary>
 14    /// DOCTYPE XHTML Transitional declaration.
 15    /// </summary>
 16    public static XDocumentType XhtmlDocTypeTransitional =>
 017        new("xhtml",
 018            "-//W3C//DTD XHTML 1.0 Transitional//EN",
 019            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd", null);
 20}