/** * JUnit 5 (Jupiter) renderer * Produces Java test files using the JUnit 5 @Test / Assertions API. * * One class per (domain, requirement) group; the class name matches the * generated file's basename (a Java source-file requirement) — see * outputFilename() in test-generator.ts, which emits `Test.java`. */ import type { ParsedScenario } from '../../../types/test-generator.js'; import type { ThenMatch } from '../then-matchers.js'; export declare function renderJunit(_domain: string, requirement: string, scenarios: ParsedScenario[], matchesByScenario: ThenMatch[][]): string; //# sourceMappingURL=junit.d.ts.map