mirror of
https://github.com/superhelio/commands.git
synced 2026-01-27 09:45:12 +00:00
15 lines
326 B
PHP
15 lines
326 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);
|
|
}
|
|
}
|