< Summary

Information
Class: DirectSight.Parser.ParserBase
Assembly DirectSight
File(s): /home/runner/work/DirectSight/DirectSight/DirectSight/Parser/ParserBase.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 17
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
ToString()100%11100%

File(s)

/home/runner/work/DirectSight/DirectSight/DirectSight/Parser/ParserBase.cs

#LineLine coverage
 1
 2namespace DirectSight.Parser;
 3
 4/// <summary>
 5/// Base class for the parser implementations.
 6/// </summary>
 7internal abstract class ParserBase
 8{
 9
 10    /// <summary>
 11    /// Returns a <see cref="string"/> that represents this instance.
 12    /// </summary>
 13    /// <returns>
 14    /// A <see cref="string"/> that represents this instance.
 15    /// </returns>
 8816    public override string ToString() => this.GetType().Name.Replace("Parser", string.Empty);
 17}

Methods/Properties

ToString()