$this->
setEnvVars([ 'APP_URL' => 'http://test.com',
]);
try { $this->shopIdProvider->
getShopId();
static::
fail('expected AppUrlChangeDetectedException was not thrown.'
);
} catch (AppUrlChangeDetectedException
) { // exception is expected
} $this->
resetEnvVars();
$this->shopIdProvider->
getShopId();
}}