• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

MissionEngineeringLtd / MissionEngineeringToolbox / 23924196120

02 Apr 2026 10:05PM UTC coverage: 71.739% (+0.8%) from 70.933%
23924196120

push

github

MissionEngineeringLtd
#4: Updated Platform project to use SimulationTimeStamp type.

105 of 168 branches covered (62.5%)

Branch coverage included in aggregate %.

33 of 38 new or added lines in 8 files covered. (86.84%)

4 existing lines in 1 file now uncovered.

1347 of 1856 relevant lines covered (72.58%)

1753.86 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

69.23
/MissionEngineering.Core/Source/SimulationTimeStamp.cs
1
namespace MissionEngineering.Core;
2

3
public record SimulationTimeStamp
4
{
5
    public DateTime WallClockDateTime { get; set; }
11,408✔
6

7
    public DateTime SimulationDateTime { get; set; }
11,408✔
8

9
    public double SimulationTime_s { get; set; }
22,814✔
10

NEW
11
    public SimulationTimeStamp()
×
12
    {
×
13
        WallClockDateTime = DateTime.Now;
×
14
    }
×
15

16
    public SimulationTimeStamp(DateTime simulationDateTime, double simulationTime_s)
3,804✔
17
    {
3,804✔
18
        WallClockDateTime = DateTime.Now;
3,804✔
19

20
        SimulationDateTime = simulationDateTime;
3,804✔
21

22
        SimulationTime_s = simulationTime_s;
3,804✔
23
    }
3,804✔
24
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc