* @author Graham Campbell */ class IntegrationServiceProviderTest extends AbstractTestCase { use ServiceProviderTrait; public function testBeaconIsInjectable() { $this->assertIsInjectable(Beacon::class); } public function testCreditsIsInjectable() { $this->assertIsInjectable(Credits::class); } public function testFeedIsInjectable() { $this->assertIsInjectable(Feed::class); } public function testSystemIsInjectable() { $this->assertIsInjectable(System::class); } public function testReleasesIsInjectable() { $this->assertIsInjectable(Releases::class); } }