Files
UNIT3D-Community-Edition/tests/Unit/Console/Commands/AutoDeactivateWarningTest.php
T
2020-02-25 13:03:55 -05:00

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();
}
}