mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-13 15:10:06 -06:00
29 lines
663 B
PHP
29 lines
663 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Console\Commands;
|
|
|
|
use Tests\TestCase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
/**
|
|
* @see \App\Console\Commands\SetCache
|
|
*/
|
|
class SetCacheTest 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('set:all_cache')
|
|
->assertExitCode(0)
|
|
->run();
|
|
|
|
// TODO: perform additional assertions to ensure the command behaved as expected
|
|
}
|
|
}
|
|
|