mirror of
https://github.com/superhelio/commands.git
synced 2026-01-27 18:45:11 +00:00
17 lines
411 B
PHP
17 lines
411 B
PHP
<?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'));
|
|
}
|
|
}
|