agent/php/tests/Feature/AgenticGenerateCommandTest.php
Virgil c4f5b77786 feat(agentic): add canonical generate command
Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-02 04:54:20 +00:00

21 lines
466 B
PHP

<?php
// SPDX-License-Identifier: EUPL-1.2
declare(strict_types=1);
namespace Core\Mod\Agentic\Tests\Feature;
use Tests\TestCase;
class AgenticGenerateCommandTest extends TestCase
{
public function test_it_registers_the_canonical_agentic_generate_command(): void
{
$this->artisan('help', [
'command' => 'agentic:generate',
])
->expectsOutputToContain('agentic:generate')
->assertSuccessful();
}
}