< Summary

Information
Class: NexusLabs.Needlr.Catalog.HostedServiceCatalogEntry
Assembly: NexusLabs.Needlr
File(s): /home/runner/work/needlr/needlr/src/NexusLabs.Needlr/Catalog/HostedServiceCatalogEntry.cs
Line coverage
83%
Covered lines: 5
Uncovered lines: 1
Coverable lines: 6
Total lines: 16
Line coverage: 83.3%
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%11100%
get_ShortTypeName()100%11100%
get_AssemblyName()100%11100%
get_ConstructorParameters()100%210%
get_SourceFilePath()100%11100%

File(s)

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

#LineLine coverage
 1namespace NexusLabs.Needlr.Catalog;
 2
 3/// <summary>
 4/// Represents a hosted service registration discovered at compile time.
 5/// </summary>
 6/// <param name="TypeName">The fully qualified name of the hosted service type.</param>
 7/// <param name="ShortTypeName">The short name of the hosted service type (without namespace).</param>
 8/// <param name="AssemblyName">The assembly name where this type is defined.</param>
 9/// <param name="ConstructorParameters">Constructor parameter type names.</param>
 10/// <param name="SourceFilePath">Source file path where the type is defined, if available.</param>
 4211public sealed record HostedServiceCatalogEntry(
 212    string TypeName,
 613    string ShortTypeName,
 114    string AssemblyName,
 015    IReadOnlyList<ConstructorParameterEntry> ConstructorParameters,
 4216    string? SourceFilePath = null);