Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Concelier Attestation Tests / attestation-tests (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
release-manifest-verify / verify (push) Has been cancelled
- Implement comprehensive tests for PackRunAttestationService, covering attestation generation, verification, and event emission. - Add tests for SealedInstallEnforcer to validate sealed install requirements and enforcement logic. - Introduce a MonacoLoaderService stub for testing purposes to prevent Monaco workers/styles from loading during Karma runs.
18 lines
573 B
C#
18 lines
573 B
C#
using System.Collections.Generic;
|
|
|
|
namespace StellaOps.Scanner.Analyzers.Lang.Java;
|
|
|
|
/// <summary>
|
|
/// Minimal stub for shaded JAR analysis results pending full Postgres migration cleanup.
|
|
/// </summary>
|
|
internal sealed record ShadedJarAnalysisResult(
|
|
bool IsShaded,
|
|
double Confidence,
|
|
IReadOnlyList<string> Markers,
|
|
IReadOnlyList<string> EmbeddedArtifacts,
|
|
IReadOnlyList<string> RelocatedPrefixes)
|
|
{
|
|
public static ShadedJarAnalysisResult None { get; } =
|
|
new(false, 0, Array.Empty<string>(), Array.Empty<string>(), Array.Empty<string>());
|
|
}
|