*/ class AppServiceProviderTest extends AbstractTestCase { use ServiceProviderTrait; public function testDateFactoryIsInjectable() { $this->assertIsInjectable(DateFactory::class); } public function testCreditsIsInjectable() { $this->assertIsInjectable(Credits::class); } public function testReleasesIsInjectable() { $this->assertIsInjectable(Releases::class); } }