< Summary - Code Coverage

Information
Class: LittleTown.Core.Actions.FieldAction
Assembly: LittleTown.Core
File(s): /workspace/mcmuzzle/LittleTown/src/LittleTown.Core/UseCases/Actions/FieldAction.cs
Tag: 215_1449
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 19
Line coverage: 0%
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
Execute(...)100%210%
CanExecute(...)100%210%

File(s)

/workspace/mcmuzzle/LittleTown/src/LittleTown.Core/UseCases/Actions/FieldAction.cs

#LineLine coverage
 1namespace LittleTown.Core.Actions;
 2
 3/// <summary>
 4/// Action qui consiste a poser un pion sur le une case du plateau
 5/// </summary>
 6public class FieldAction : IAction
 7{
 8    /// <inheritdoc/>>
 9    public void Execute(Match match)
 10    {
 011        throw new NotImplementedException();
 12    }
 13
 14    /// <inheritdoc/>>
 15    public bool CanExecute(Match match)
 16    {
 017        return true;
 18    }
 19}