< Summary

Information
Class: Trailblazer.Pathing.ExternalGridEventObservation
Assembly: Trailblazer
File(s): /home/runner/work/Trailblazer/Trailblazer/src/Trailblazer/Pathing/GridBridge/ExternalGridEventObservation.cs
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 16
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%

File(s)

/home/runner/work/Trailblazer/Trailblazer/src/Trailblazer/Pathing/GridBridge/ExternalGridEventObservation.cs

#LineLine coverage
 1namespace Trailblazer.Pathing;
 2
 3internal readonly struct ExternalGridEventObservation
 4{
 5    public ExternalGridEventObservation(
 6        ExternalGridEventSignature signature,
 7        int identicalEventStreak)
 8    {
 20199        Signature = signature;
 201910        IdenticalEventStreak = identicalEventStreak;
 201911    }
 12
 13    public ExternalGridEventSignature Signature { get; }
 14
 15    public int IdenticalEventStreak { get; }
 16}