class StoreNotAvailableExceptionTest extends TestCase
{ public function testGetErrorCode(): void
{ static::
assertSame( 'FRAMEWORK__STORE_NOT_AVAILABLE',
(new StoreNotAvailableException())->
getErrorCode() );
} public function testGetStatusCode(): void
{ static::
assertSame( Response::HTTP_INTERNAL_SERVER_ERROR,
(new StoreNotAvailableException())->
getStatusCode() );
}