< Summary - SonghayCore

Information
Class: Songhay.Models.PackedResource<T>
Assembly: SonghayCore
File(s): /home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/PackedResourceOfT.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 18
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_XamlString()100%10%
get_XamlObject()100%10%

File(s)

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

#LineLine coverage
 1namespace Songhay.Models;
 2
 3/// <summary>
 4/// Defines the meta-data of an Application resource.
 5/// </summary>
 6/// <typeparam name="TResource">The type of the resource.</typeparam>
 7public class PackedResource<TResource> : PackedResource
 8{
 9    /// <summary>
 10    /// Gets or sets the XAML string.
 11    /// </summary>
 012    public string? XamlString { get; set; }
 13
 14    /// <summary>
 15    /// Gets or sets the XAML object.
 16    /// </summary>
 017    public TResource? XamlObject { get; set; }
 18}

Methods/Properties

get_XamlString()
get_XamlObject()