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