| 1234567891011121314151617 |
- <?php
- namespace Yansongda\Supports\Tests;
- use PHPUnit\Framework\TestCase;
- use Yansongda\Supports\Collection;
- use Yansongda\Supports\Config;
- class ConfigTest extends TestCase
- {
- public function testBootstrap()
- {
- $config = [];
- self::assertInstanceOf(Collection::class, new Config($config));
- }
- }
|