Files
UNIT3D-Community-Edition/tests/Unit/Console/Commands/AutoRemovePersonalFreeleechTest.php
T
2023-07-10 18:54:51 +00:00

22 lines
505 B
PHP

<?php
namespace Tests\Unit\Console\Commands;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;
/**
* @see \App\Console\Commands\AutoRemovePersonalFreeleech
*/
class AutoRemovePersonalFreeleechTest extends TestCase
{
#[Test]
public function it_runs_successfully(): void
{
$this->artisan('auto:remove_personal_freeleech')
->expectsOutput('Automated Removal User Personal Freeleech Command Complete')
->assertExitCode(0)
->run();
}
}