Files
UNIT3D-Community-Edition/tests/Unit/Console/Commands/AutoBonAllocationTest.php
T
HDVinnie 987bed7a7b Apply fixes from StyleCI
[ci skip] [skip ci]
2020-02-13 21:45:47 +00:00

26 lines
590 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->markTestIncomplete('This test case was generated by Shift. When you are ready, remove this line and complete this test case.');
$this->artisan('auto:bon_allocation')
->assertExitCode(0)
->run();
// TODO: perform additional assertions to ensure the command behaved as expected
}
}