1234567891011121314151617 |
- <?php
- namespace Illuminate\Tests\Integration\Support;
- use Illuminate\Tests\Integration\Support\Fixtures\NullableManager;
- use InvalidArgumentException;
- use Orchestra\Testbench\TestCase;
- class ManagerTest extends TestCase
- {
- public function testDefaultDriverCannotBeNull()
- {
- $this->expectException(InvalidArgumentException::class);
- (new NullableManager($this->app))->driver();
- }
- }
|