@sethdouglasford/claude-flow
Version:
Claude Code Flow - Advanced AI-powered development workflows with SPARC methodology
16 lines • 584 B
TypeScript
import { IStrategy, DecompositionResult } from "./base.js";
import { SwarmObjective } from "../types.js";
/**
* Testing Strategy - Comprehensive testing coordination with distributed validation
* Based on the Testing Swarm Pattern from swarm documentation
*
* Features:
* - Test planning and strategy
* - Test case generation
* - Parallel test execution
* - Results aggregation and reporting
*/
export declare class TestingStrategy implements IStrategy {
decomposeObjective(objective: SwarmObjective): Promise<DecompositionResult>;
}
//# sourceMappingURL=testing.d.ts.map