11 lines
175 B
PHP
11 lines
175 B
PHP
|
<?php
|
||
|
|
||
|
namespace Zoomyboy\LaravelNami\Tests;
|
||
|
|
||
|
class TestCase extends \Orchestra\Testbench\TestCase
|
||
|
{
|
||
|
public function test_aaa() {
|
||
|
$this->assertTrue(true);
|
||
|
}
|
||
|
}
|