shouldReceive('get')->with(SystemSettingKey::WEB_NAME)->andReturn('My App'); $getSystemSettings->shouldReceive('get')->with(SystemSettingKey::WEB_DESCRIPTION)->andReturn('My App Description'); $middleware = new HandleSeoSetting($getSystemSettings); $request = Request::create('/', 'GET'); $next = fn($req) => new Response(); $middleware->handle($request, $next); expect(config('seotools.meta.defaults.title'))->toBe('My App') ->and(config('seotools.meta.defaults.description'))->toBe('My App Description'); });