mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-22 01:38:49 -05:00
987bed7a7b
[ci skip] [skip ci]
26 lines
580 B
PHP
26 lines
580 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Console\Commands;
|
|
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* @see \App\Console\Commands\AutoPreWarning
|
|
*/
|
|
class AutoPreWarningTest 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('auto:prewarning')
|
|
->assertExitCode(0)
|
|
->run();
|
|
|
|
// TODO: perform additional assertions to ensure the command behaved as expected
|
|
}
|
|
}
|