< Summary

Information
Class: Safarimacik.Model.GameOverEventArgs
Assembly: Safarimacik
File(s): /builds/szofttech-ab-2025/group-03/safarimacik/model/GameOverEventArgs.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 9
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%
get_IsWon()100%11100%

File(s)

/builds/szofttech-ab-2025/group-03/safarimacik/model/GameOverEventArgs.cs

#LineLine coverage
 1namespace Safarimacik.Model;
 2
 3
 4/// <summary>
 5/// Provides data for the Model.GameModel.GameOver event.
 6/// </summary>
 17public class GameOverEventArgs(bool isWon) : EventArgs {
 18  public bool IsWon => isWon;
 9}

Methods/Properties

.ctor(bool)
get_IsWon()