< Summary

Information
Class: Amusoft.DotnetNew.Tests.Templating.ProjectTemplatingContext
Assembly: Amusoft.DotnetNew.Tests
File(s): /home/runner/work/Amusoft.DotnetNew.Tests/Amusoft.DotnetNew.Tests/src/Amusoft.DotnetNew.Tests/Templating/ProjectTemplatingContext.cs
Tag: 127_14865883074
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
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

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_ProjectTemplatePath()100%11100%

File(s)

/home/runner/work/Amusoft.DotnetNew.Tests/Amusoft.DotnetNew.Tests/src/Amusoft.DotnetNew.Tests/Templating/ProjectTemplatingContext.cs

#LineLine coverage
 1using Amusoft.DotnetNew.Tests.Utility;
 2
 3namespace Amusoft.DotnetNew.Tests.Templating;
 4
 5/// <summary>
 6/// Context of templating operations
 7/// </summary>
 8public class ProjectTemplatingContext
 9{
 610  internal ProjectTemplatingContext(CrossPlatformPath projectTemplatePath)
 11  {
 612    ProjectTemplatePath = projectTemplatePath;
 613  }
 14
 15  /// <summary>
 16  /// Path of the templating solution
 17  /// </summary>
 3018  internal CrossPlatformPath ProjectTemplatePath { get; set; }
 19}