| 1 | <?php |
||
| 11 | class ServiceProviderTest extends AbstractTestCase |
||
| 12 | { |
||
| 13 | use ServiceProviderTrait; |
||
| 14 | |||
| 15 | /** @test */ |
||
| 16 | public function config_is_injectable() |
||
| 17 | { |
||
| 18 | $this->assertIsInjectable(Repository::class); |
||
| 19 | } |
||
| 20 | |||
| 21 | /** @test */ |
||
| 22 | public function database_is_injectable() |
||
| 23 | { |
||
| 24 | $this->assertIsInjectable(Database::class); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |