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

SamboyCoding / Cpp2IL / 12320749043

13 Dec 2024 06:07PM UTC coverage: 27.79% (-0.3%) from 28.128%
12320749043

Pull #393

github

web-flow
Merge b9caa35d0 into ac99859af
Pull Request #393: Add Type field to AttributeAttribute

1268 of 6370 branches covered (19.91%)

Branch coverage included in aggregate %.

3 of 93 new or added lines in 7 files covered. (3.23%)

45 existing lines in 4 files now uncovered.

3386 of 10377 relevant lines covered (32.63%)

123656.67 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✔
UNCOV
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