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

SamboyCoding / Cpp2IL / 12324180199

13 Dec 2024 10:46PM UTC coverage: 27.497% (-0.3%) from 27.79%
12324180199

push

github

SamboyCoding
Core: Fix more test failures

1251 of 6374 branches covered (19.63%)

Branch coverage included in aggregate %.

18 of 21 new or added lines in 1 file covered. (85.71%)

429 existing lines in 16 files now uncovered.

3360 of 10395 relevant lines covered (32.32%)

124828.12 hits per line

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

83.33
/LibCpp2IL/ReadableClass.cs
1
using System;
2

3
namespace LibCpp2IL;
4

5
public abstract class ReadableClass
6
{
7
    internal float MetadataVersion { get; set; }
15,112,522✔
8
    
9
    protected bool IsAtLeast(float vers) => MetadataVersion >= vers;
1,543,689✔
10
    protected bool IsLessThan(float vers) => MetadataVersion < vers;
376,936✔
11
    protected bool IsAtMost(float vers) => MetadataVersion <= vers;
3,526,894✔
12
    protected bool IsNot(float vers) => Math.Abs(MetadataVersion - vers) > 0.001f;
257,619✔
UNCOV
13
    protected bool Is(float vers) => Math.Abs(MetadataVersion - vers) < 0.001f;
×
14

15
    public abstract void Read(ClassReadingBinaryReader reader);
16
}
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