< Summary

Class:FpMineSweeper.CellHelper
Assembly:FpMineSweeper
File(s):/home/runner/work/KATA-MineSweeper-20210502b/KATA-MineSweeper-20210502b/src/FpMineSweeper/CellHelper.cs
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:7
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0
Tag:52_817390446

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Click(...)0%110100%

File(s)

/home/runner/work/KATA-MineSweeper-20210502b/KATA-MineSweeper-20210502b/src/FpMineSweeper/CellHelper.cs

#LineLine coverage
 1namespace FpMineSweeper
 2{
 3    public static class CellHelper
 4    {
 15        public static Cell Click(this Cell cell) => cell with { IsCovered = false };
 6    }
 7}

Methods/Properties

Click(FpMineSweeper.Cell)