< Summary

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

File(s)

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

#LineLine coverage
 1namespace Safarimacik.Model;
 2
 3
 4/// <summary>
 5/// Provides data for the Model.GameModel.JeepStart event.
 6/// </summary>
 07public class JeepEventArgs(Jeep? jeep = null) : EventArgs {
 08  public Jeep? JeepStarted => jeep;
 9}