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

SamboyCoding / Cpp2IL / 15036337752

15 May 2025 04:03AM UTC coverage: 34.393% (-0.4%) from 34.826%
15036337752

Pull #451

github

web-flow
Merge a4fcb53c9 into e93c0fecc
Pull Request #451: Support injecting anything

1786 of 6584 branches covered (27.13%)

Branch coverage included in aggregate %.

139 of 186 new or added lines in 26 files covered. (74.73%)

53 existing lines in 2 files now uncovered.

4167 of 10725 relevant lines covered (38.85%)

189585.86 hits per line

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

10.0
/Cpp2IL.Core/Model/Contexts/InjectedAssemblyAnalysisContext.cs
1
using System;
2

3
namespace Cpp2IL.Core.Model.Contexts;
4

5
public class InjectedAssemblyAnalysisContext(
6
    string name,
7
    ApplicationAnalysisContext appContext,
8
    Version? version = null,
9
    uint hashAlgorithm = 0,
10
    uint flags = 0,
11
    string? culture = null,
12
    byte[]? publicKeyToken = null,
13
    byte[]? publicKey = null)
14
    : AssemblyAnalysisContext(null, appContext)
1✔
15
{
NEW
16
    public override string DefaultName => name;
×
NEW
17
    public override Version Version => version ?? base.Version;
×
NEW
18
    public override uint HashAlgorithm => hashAlgorithm;
×
NEW
19
    public override uint Flags => flags;
×
NEW
20
    public override string? Culture => culture;
×
NEW
21
    public override byte[]? PublicKeyToken => publicKeyToken;
×
NEW
22
    public override byte[]? PublicKey => publicKey;
×
23
}
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