mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 03:33:59 +00:00
17 lines
415 B
PHP
17 lines
415 B
PHP
<?php
|
|
namespace Superhelio\Commands;
|
|
|
|
use Tests\TestCase;
|
|
use Superhelio\Commands\Commands\Reload;
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
class ReloadTest extends TestCase
|
|
{
|
|
public function testReloadTest()
|
|
{
|
|
$this->assertTrue(true);
|
|
$this->assertTrue(class_exists('\\Superhelio\\Commands\\Commands\\Reload'));
|
|
}
|
|
}
|