app = m::mock(App::class)->makePartial(); Container::setInstance($this->app); $this->app->shouldReceive('make')->with(App::class)->andReturn($this->app); $this->app->shouldReceive('isDebug')->andReturnTrue(); $this->config = m::mock(Config::class)->makePartial(); $this->config->shouldReceive('get')->with('app.show_error_msg')->andReturnTrue(); $this->app->shouldReceive('get')->with('config')->andReturn($this->config); $this->app->shouldReceive('runningInConsole')->andReturn(false); } }