Files
UNIT3D-Community-Edition/tests/Unit/Console/Commands/AutoPreWarningTest.php
T
2023-07-10 18:54:51 +00:00

22 lines
449 B
PHP

<?php
namespace Tests\Unit\Console\Commands;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;
/**
* @see \App\Console\Commands\AutoPreWarning
*/
class AutoPreWarningTest extends TestCase
{
#[Test]
public function it_runs_successfully(): void
{
$this->artisan('auto:prewarning')
->expectsOutput('Automated User Pre-Warning Command Complete')
->assertExitCode(0)
->run();
}
}