< Summary

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

File(s)

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

#LineLine coverage
 1namespace LGDXRobotCloud.Data.Models.Business.Navigation;
 2
 3public record RobotChassisInfoUpdateBusinessModel
 4{
 05  public required int RobotTypeId { get; set; }
 6
 07  public required double ChassisLengthX { get; set; }
 8
 09  public required double ChassisLengthY { get; set; }
 10
 011  public required int ChassisWheelCount { get; set; }
 12
 013  public required double ChassisWheelRadius { get; set; }
 14
 015  public required int BatteryCount { get; set; }
 16
 017  public required double BatteryMaxVoltage { get; set; }
 18
 019  public required double BatteryMinVoltage { get; set; }
 20}