/** * Go testing renderer * Produces Go test files using the standard `testing` package * (func TestXxx(t *testing.T)). * * One file per (domain, requirement) group; the package name is derived from * the domain so the file compiles as a self-contained test package. */ import type { ParsedScenario } from '../../../types/test-generator.js'; import type { ThenMatch } from '../then-matchers.js'; export declare function renderGotest(domain: string, requirement: string, scenarios: ParsedScenario[], matchesByScenario: ThenMatch[][]): string; //# sourceMappingURL=gotest.d.ts.map