mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-22 10:08:31 -05:00
22 lines
449 B
PHP
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();
|
|
}
|
|
}
|