mirror of
https://github.com/superhelio/commands.git
synced 2026-02-22 00:55:57 +00:00
Add base tests to get something out
This commit is contained in:
16
tests/GozerTest.php
Normal file
16
tests/GozerTest.php
Normal 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'));
|
||||||
|
}
|
||||||
|
}
|
||||||
16
tests/ReloadTest.php
Normal file
16
tests/ReloadTest.php
Normal 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'));
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user