Files
UNIT3D-Community-Edition/tests/Unit/Console/Commands/SetCacheTest.php
2020-01-22 17:19:03 +00:00

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
}
}