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

23 lines
408 B
PHP

<?php
namespace Tests\Unit\Console\Commands;
use Tests\TestCase;
/**
* @see \App\Console\Commands\AutoWarning
*/
class AutoWarningTest extends TestCase
{
/**
* @test
*/
public function it_runs_successfully()
{
$this->artisan('auto:warning')
->expectsOutput('Automated User Warning Command Complete')
->assertExitCode(0)
->run();
}
}