Inheritance: extends Laravel\Socialite\SocialiteServiceProvider
 /**
  * @test
  */
 public function it_fires_an_event()
 {
     $app = m::mock('Illuminate\\Contracts\\Foundation\\Application');
     $socialiteWasCalled = m::mock('SocialiteProviders\\Manager\\SocialiteWasCalled');
     $event = m::mock('Illuminate\\Contracts\\Events\\Dispatcher');
     $event->shouldReceive('fire')->with($socialiteWasCalled);
     $sp = new ServiceProvider($app);
     $sp->boot($event, $socialiteWasCalled);
 }