Inheritance: extends Illuminate\Foundation\Support\Providers\RouteServiceProvider
 public function test_it_should_call_all_binders()
 {
     $this->configMock->shouldReceive('get')->with('routes.binders', [])->andReturn(['foo', 'bar', 'baz']);
     $this->appMock->shouldReceive('routesAreCached')->andReturn(false);
     $this->expectBinders();
     $this->sp->boot($this->routerMock);
 }