/** * SMI-1535: Neural Test Infrastructure - Setup * * Provides test context factory and mock implementations for * the Recommendation Learning Loop integration tests. * * This file re-exports all neural test infrastructure from * modular files for backwards compatibility. * * @see packages/core/src/learning/interfaces.ts * @see packages/core/src/learning/types.ts */ export { createDefaultProfile } from './neural-fixtures.js'; export { type NeuralTestContext, createNeuralTestContext, cleanupNeuralTestContext, } from './neural-test-utils.js'; export { MockSignalCollector, MockPreferenceLearner, MockPersonalizationEngine, MockPrivacyManager, MockUserPreferenceRepository, } from './neural-mocks.js'; //# sourceMappingURL=setup.d.ts.map