mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 11:44:01 +00:00
16 lines
410 B
PHP
16 lines
410 B
PHP
<?php
|
|
namespace Superhelio\Commands;
|
|
|
|
use Superhelio\Commands\Commands\Gozer;
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
class GozerTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testGozerTest()
|
|
{
|
|
$this->assertTrue(true);
|
|
$this->assertTrue(class_exists('\\Superhelio\\Commands\\Commands\\Gozer'));
|
|
}
|
|
}
|