< Summary

Information
Class: LGDXRobotCloud.Data.Models.Business.Navigation.RobotChassisInfoCreateBusinessModel
Assembly: LGDXRobotCloud.Data
File(s): /builds/yukaitung/lgdxrobot2-cloud/LGDXRobotCloud.Data/Models/Business/Navigation/RobotChassisInfoCreateBusinessModel.cs
Line coverage
100%
Covered lines: 8
Uncovered lines: 0
Coverable lines: 8
Total lines: 20
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
get_RobotTypeId()100%11100%
get_ChassisLengthX()100%11100%
get_ChassisLengthY()100%11100%
get_ChassisWheelCount()100%11100%
get_ChassisWheelRadius()100%11100%
get_BatteryCount()100%11100%
get_BatteryMaxVoltage()100%11100%
get_BatteryMinVoltage()100%11100%

File(s)

/builds/yukaitung/lgdxrobot2-cloud/LGDXRobotCloud.Data/Models/Business/Navigation/RobotChassisInfoCreateBusinessModel.cs

#LineLine coverage
 1namespace LGDXRobotCloud.Data.Models.Business.Navigation;
 2
 3public record RobotChassisInfoCreateBusinessModel
 4{
 35  public required int RobotTypeId { get; set; }
 6
 37  public required double ChassisLengthX { get; set; }
 8
 39  public required double ChassisLengthY { get; set; }
 10
 311  public required int ChassisWheelCount { get; set; }
 12
 313  public required double ChassisWheelRadius { get; set; }
 14
 315  public required int BatteryCount { get; set; }
 16
 317  public required double BatteryMaxVoltage { get; set; }
 18
 319  public required double BatteryMinVoltage { get; set; }
 20}