mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-22 01:38:49 -05:00
9c0c474a9a
Make everything consistent with the "plural noun" style
23 lines
456 B
PHP
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();
|
|
}
|
|
}
|