static::
assertEquals('FRAMEWORK__EXTENSION_THEME_STILL_IN_USE',
$exception->
getErrorCode());
static::
assertEquals(Response::HTTP_FORBIDDEN,
$exception->
getStatusCode());
} /**
* @DisabledFeatures(features={"v6.6.0.0"})
*/
public function testExtensionInstallException(): void
{ $exception = StoreException::
extensionInstallException('Extension not found'
);
static::
assertEquals( 'Extension not found',
$exception->
getMessage() );
static::
assertEquals('FRAMEWORK__EXTENSION_INSTALL_EXCEPTION',
$exception->
getErrorCode());
static::
assertEquals(Response::HTTP_INTERNAL_SERVER_ERROR,
$exception->
getStatusCode());
} /**
* @DisabledFeatures(features={"v6.6.0.0"})
*/