pm-orchestrator-enhancement
Version:
PM Orchestrator Enhancement - Multi-agent parallel execution system
23 lines • 731 B
TypeScript
/**
* PM Orchestrator Enhancement - Tester Subagent
*
* テストを作成します(ユニット、統合、E2E)
*/
import { TesterOutput } from '../types';
export declare class Tester {
private version;
/**
* テストを作成します
*
* @param _implementation 実装内容
* @param testType テストタイプ
* @param _coverage カバレッジ目標
* @returns テスト作成結果
*/
createTests(_implementation: string, testType: 'unit' | 'integration' | 'e2e', _coverage: number): Promise<TesterOutput>;
private createUnitTests;
private createIntegrationTests;
private createE2ETests;
private calculateCoverage;
}
//# sourceMappingURL=tester.d.ts.map