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

23 lines
421 B
PHP

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