< Summary

Information
Class: NexusLabs.Needlr.Catalog.PluginCatalogEntry
Assembly: NexusLabs.Needlr
File(s): /home/runner/work/needlr/needlr/src/NexusLabs.Needlr/Catalog/PluginCatalogEntry.cs
Line coverage
28%
Covered lines: 2
Uncovered lines: 5
Coverable lines: 7
Total lines: 18
Line coverage: 28.5%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_TypeName()100%210%
get_ShortTypeName()100%210%
get_Interfaces()100%210%
get_AssemblyName()100%210%
get_Order()100%210%
get_SourceFilePath()100%11100%

File(s)

/home/runner/work/needlr/needlr/src/NexusLabs.Needlr/Catalog/PluginCatalogEntry.cs

#LineLine coverage
 1namespace NexusLabs.Needlr.Catalog;
 2
 3/// <summary>
 4/// Represents a plugin discovered at compile time.
 5/// </summary>
 6/// <param name="TypeName">The fully qualified name of the plugin type.</param>
 7/// <param name="ShortTypeName">The short name of the plugin type (without namespace).</param>
 8/// <param name="Interfaces">The plugin interfaces this type implements.</param>
 9/// <param name="AssemblyName">The assembly name where this type is defined.</param>
 10/// <param name="Order">The execution order of this plugin.</param>
 11/// <param name="SourceFilePath">Source file path where the type is defined, if available.</param>
 189012public sealed record PluginCatalogEntry(
 013    string TypeName,
 014    string ShortTypeName,
 015    IReadOnlyList<string> Interfaces,
 016    string AssemblyName,
 017    int Order = 0,
 189018    string? SourceFilePath = null);