boot() public method

public boot ( Router $router = null )
$router Illuminate\Routing\Router
 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);
 }