getContainer()->get(ConfigurationService::class); $appName = new AppName($configService); expect((string) $appName)->toBe(SystemSettingKey::SYSTEM_NAME->defaultValue()); $expected = 'Test System Name'; $configService->set(SystemSettingKey::SYSTEM_NAME, $expected); expect((string) $appName)->toBe($expected); });