Files
UNIT3D-Community-Edition/tests/Unit/Console/Commands/AutoRewardResurrectionTest.php
T
Roardom 9c0c474a9a refactor: rename graveyard to resurrections
Make everything consistent with the "plural noun" style
2023-07-24 01:07:35 +00:00

23 lines
456 B
PHP

<?php
namespace Tests\Unit\Console\Commands;
use Tests\TestCase;
/**
* @see \App\Console\Commands\AutoRewardResurrection
*/
class AutoRewardResurrectionTest extends TestCase
{
/**
* @test
*/
public function it_runs_successfully(): void
{
$this->artisan('auto:reward_resurrection')
->expectsOutput('Automated Reward Resurrections Command Complete')
->assertExitCode(0)
->run();
}
}