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

23 lines
429 B
PHP

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