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

me-viper / OpaDotNet.Compilation / 6942841257

21 Nov 2023 09:53AM UTC coverage: 88.266%. Remained the same
6942841257

push

github

me-viper
chore: Update CHANGELOG

180 of 220 branches covered (0.0%)

Branch coverage included in aggregate %.

670 of 743 relevant lines covered (90.17%)

533.36 hits per line

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

80.0
/src/OpaDotNet.Compilation.Abstractions/CompilationParameters.cs
1
namespace OpaDotNet.Compilation.Abstractions;
2

3
/// <summary>
4
/// Compilation parameters.
5
/// </summary>
6
public record CompilationParameters
×
7
{
8
    /// <summary>
9
    /// Specifies if compilation source if file or bundle.
10
    /// </summary>
11
    public bool IsBundle { get; init; }
294✔
12

13
    /// <summary>
14
    /// Which documents (entrypoints) will be queried when asking for policy decisions.
15
    /// </summary>
16
    public IReadOnlySet<string>? Entrypoints { get; init; }
294✔
17

18
    /// <summary>
19
    /// Capabilities file that defines the built-in functions and other language features that policies may depend on.
20
    /// If <see cref="CapabilitiesFilePath"/> is specified <see cref="CapabilitiesStream"/> is ignored.
21
    /// </summary>
22
    public string? CapabilitiesFilePath { get; init; }
252✔
23

24
    /// <summary>
25
    /// Capabilities json that defines the built-in functions and other language features that policies may depend on.
26
    /// </summary>
27
    public Stream? CapabilitiesStream { get; init; }
190✔
28
}
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