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/GozerTest.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace Superhelio\Commands;
use Tests\TestCase;
use Superhelio\Commands\Commands\Gozer;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class GozerTest extends TestCase
{
public function testGozerTest()
{
$this->assertTrue(true);
$this->assertTrue(class_exists('\\Superhelio\\Commands\\Commands\\Gozer'));
}
}