/** * Test Command * Generates PHPUnit test files for PHP classes */ /** * Options for the test command */ export interface TestOptions { output: string; model: string; } /** * Execute the test command * @param targetPath - Path to PHP file(s) to generate tests for * @param options - Command options */ export declare function testCommand(targetPath: string, options: TestOptions): Promise; //# sourceMappingURL=test.d.ts.map