< Summary

Information
Class: Minesweeper.Domain.Width
Assembly: Minesweeper
File(s): /home/runner/work/kata-minesweeper-func1/kata-minesweeper-func1/src/Minesweeper/Domain/Width.cs
Tag: 26_1981553485
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 7
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

Coverage History

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_Value()100%1100%
op_Implicit(...)100%1100%

File(s)

/home/runner/work/kata-minesweeper-func1/kata-minesweeper-func1/src/Minesweeper/Domain/Width.cs

#LineLine coverage
 1namespace Minesweeper.Domain;
 2
 43public readonly record struct Width(int Value)
 4{
 15    public static implicit operator Width(int v) => new(v);
 6}
 7