< Summary

Information
Class: NanoRoute.RoutingContext
Assembly: NanoRoute.dll
File(s): /home/runner/work/nanoroute/nanoroute/Src/NanoRoute/Public/RoutingContext.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 19
Line coverage: 100%
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

MethodBlocks covered Blocks not covered
RoutingContext(...)20

File(s)

/home/runner/work/nanoroute/nanoroute/Src/NanoRoute/Public/RoutingContext.cs

#LineLine coverage
 1/********************************************************************************
 2* RoutingContext.cs                                                             *
 3*                                                                               *
 4* Author: Denes Solti                                                           *
 5********************************************************************************/
 6namespace NanoRoute
 7{
 8    using Internals;
 9
 10    /// <summary>
 11    /// Provides shared access to the route tree used during building and routing.
 12    /// </summary>
 13    public abstract class RoutingContext
 14    {
 15        private protected readonly RouteNode _root;
 16
 217        private protected RoutingContext(RouteNode root) => _root = root;
 18    }
 19}