mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-21 09:20:08 -05:00
23 lines
446 B
PHP
23 lines
446 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Console\Commands;
|
|
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* @see \App\Console\Commands\AutoDeactivateWarning
|
|
*/
|
|
class AutoDeactivateWarningTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_runs_successfully()
|
|
{
|
|
$this->artisan('auto:deactivate_warning')
|
|
->expectsOutput('Automated Warning Deativation Command Complete')
|
|
->assertExitCode(0)
|
|
->run();
|
|
}
|
|
}
|