/** * Expanded Golden Dataset for Drift Detection Evaluation * * Phase 3 expansion: 150+ additional labeled test cases covering: * - Extended security vulnerability paraphrases * - Comprehensive limitation variations * - Assertion behavior matching * - Edge cases (negation, severity, constraints) * - Paraphrase robustness tests * * These cases are designed to: * 1. Test algorithm robustness against paraphrase variations * 2. Verify correct handling of edge cases * 3. Ensure high recall without sacrificing precision */ import type { GoldenTestCase } from './types.js'; export declare const PATH_TRAVERSAL_CASES: GoldenTestCase[]; export declare const SQL_INJECTION_CASES: GoldenTestCase[]; export declare const XSS_CASES: GoldenTestCase[]; export declare const COMMAND_INJECTION_CASES: GoldenTestCase[]; export declare const SSRF_CASES: GoldenTestCase[]; export declare const AUTH_CASES: GoldenTestCase[]; export declare const SIZE_LIMIT_CASES: GoldenTestCase[]; export declare const RATE_LIMIT_CASES: GoldenTestCase[]; export declare const TIMEOUT_CASES: GoldenTestCase[]; export declare const FORMAT_CASES: GoldenTestCase[]; export declare const ASSERTION_CASES: GoldenTestCase[]; export declare const NEGATION_CASES: GoldenTestCase[]; export declare const SEVERITY_CASES: GoldenTestCase[]; export declare const SIMILAR_DIFFERENT_CASES: GoldenTestCase[]; export declare const PARAPHRASE_TECHNICAL_CASES: GoldenTestCase[]; export declare const PARAPHRASE_VOICE_CASES: GoldenTestCase[]; export declare const PARAPHRASE_REGISTER_CASES: GoldenTestCase[]; export declare const EXPANDED_TEST_CASES: GoldenTestCase[]; /** * Get statistics about the expanded dataset. */ export declare function getExpandedDatasetStatistics(): { totalCases: number; byCategory: Record; byTag: Record; truePositives: number; trueNegatives: number; }; //# sourceMappingURL=expanded-dataset.d.ts.map