| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Illuminate\Tests\Support;
- use Illuminate\Config\Repository;
- use Illuminate\Container\Container;
- use Illuminate\Support\Fluent;
- use Illuminate\Support\Traits\CapsuleManagerTrait;
- use Mockery as m;
- use PHPUnit\Framework\TestCase;
- class SupportCapsuleManagerTraitTest extends TestCase
- {
- use CapsuleManagerTrait;
- protected function tearDown(): void
- {
- m::close();
- }
- public function testSetupContainerForCapsule()
- {
- $this->container = null;
- $app = new Container;
- $this->setupContainer($app);
- $this->assertEquals($app, $this->getContainer());
- $this->assertInstanceOf(Fluent::class, $app['config']);
- }
- public function testSetupContainerForCapsuleWhenConfigIsBound()
- {
- $this->container = null;
- $app = new Container;
- $app['config'] = m::mock(Repository::class);
- $this->setupContainer($app);
- $this->assertEquals($app, $this->getContainer());
- $this->assertInstanceOf(Repository::class, $app['config']);
- }
- }
|