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

SamboyCoding / Cpp2IL / 12312225023

13 Dec 2024 08:32AM UTC coverage: 27.996% (-0.1%) from 28.128%
12312225023

Pull #395

github

web-flow
Merge ab13d42bd into d297c56a8
Pull Request #395: String Public Key

1266 of 6293 branches covered (20.12%)

Branch coverage included in aggregate %.

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

3385 of 10320 relevant lines covered (32.8%)

124339.65 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

© 2025 Coveralls, Inc