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

SamboyCoding / Cpp2IL / 12319345616

13 Dec 2024 04:27PM UTC coverage: 27.986% (-0.1%) from 28.118%
12319345616

push

github

web-flow
String Public Key (#395)

* Handle public key being string on older versions

* Update version comment

* One more comment

1266 of 6295 branches covered (20.11%)

Branch coverage included in aggregate %.

4 of 40 new or added lines in 2 files covered. (10.0%)

3385 of 10324 relevant lines covered (32.79%)

124291.48 hits per line

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

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

3
namespace LibCpp2IL;
4

5
public abstract class ReadableClass
6
{
7
    protected static bool IsAtLeast(float vers) => LibCpp2IlMain.MetadataVersion >= vers;
1,543,689✔
8
    protected static bool IsLessThan(float vers) => LibCpp2IlMain.MetadataVersion < vers;
376,936✔
9
    protected static bool IsAtMost(float vers) => LibCpp2IlMain.MetadataVersion <= vers;
3,526,894✔
10
    protected static bool IsNot(float vers) => Math.Abs(LibCpp2IlMain.MetadataVersion - vers) > 0.001f;
257,619✔
NEW
11
    protected static bool Is(float vers) => Math.Abs(LibCpp2IlMain.MetadataVersion - vers) < 0.001f;
×
12

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