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

connorivy / beamOS / 14882999397

07 May 2025 12:10PM UTC coverage: 70.971%. First build
14882999397

Pull #85

github

web-flow
Merge 16abd45d8 into e6bb4b15c
Pull Request #85: Add load combos

867 of 1830 branches covered (47.38%)

Branch coverage included in aggregate %.

1474 of 1639 new or added lines in 74 files covered. (89.93%)

7536 of 10010 relevant lines covered (75.28%)

0.78 hits per line

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

85.71
/src/StructuralAnalysis/BeamOs.StructuralAnalysis.Domain/PhysicalModel/LoadCases/LoadCaseId.cs
1
using System.Globalization;
2
using BeamOs.Common.Domain.Models;
3

4
namespace BeamOs.StructuralAnalysis.Domain.PhysicalModel.LoadCases;
5

6
public readonly record struct LoadCaseId : IIntBasedId
7
{
8
    public int Id { get; init; }
1✔
9

10
    public LoadCaseId(int id)
11
    {
1✔
12
        this.Id = id;
1✔
13
    }
1✔
14

15
    public static implicit operator int(LoadCaseId id) => id.Id;
1✔
16

17
    public static implicit operator LoadCaseId(int id) => new(id);
1✔
18

NEW
19
    public override string ToString() => this.Id.ToString(CultureInfo.InvariantCulture);
×
20
}
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