Add base tests to get something out

This commit is contained in:
Ismo Vuorinen
2017-02-08 14:43:20 +02:00
parent 0e0c094071
commit 03405ded71
2 changed files with 32 additions and 0 deletions

16
tests/ReloadTest.php Normal file
View File

@@ -0,0 +1,16 @@
<?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'));
}
}