static::
assertTrue($schema->
hasTable('ce_blog_comment'
));
static::
assertEquals($columns,
$connection->
executeQuery('DESCRIBE test_with_enum_column'
)->
fetchAllAssociative());
self::
cleanUp($this->
getContainer());
} private function testStorage(ContainerInterface
$container): void
{ $schema =
$container ->
get(Connection::
class) ->
createSchemaManager() ->
introspectSchema();
self::
assertColumns($schema, 'custom_entity_blog',
['id', 'top_seller_restrict_id', 'top_seller_restrict_version_id', 'top_seller_cascade_id', 'top_seller_cascade_version_id', 'top_seller_set_null_id', 'top_seller_set_null_version_id', 'link_product_restrict_id', 'link_product_restrict_version_id', 'link_product_cascade_id', 'link_product_cascade_version_id', 'link_product_set_null_id', 'link_product_set_null_version_id', 'inherited_top_seller_id', 'inherited_top_seller_version_id', 'created_at', 'updated_at', 'position', 'rating', 'payload', 'email'
]);
self::
assertColumns($schema, 'custom_entity_blog_translation',
['custom_entity_blog_id', 'language_id', 'created_at', 'updated_at', 'title', 'content', 'display'
]);
self::
assertColumns($schema, 'ce_blog_comment',
['id', 'recommendation_id', 'recommendation_version_id', 'created_at', 'updated_at', 'email'
]);
self::
assertColumns($schema, 'ce_blog_comment_translation',
['ce_blog_comment_id', 'language_id', 'created_at', 'updated_at', 'title', 'content'
]);
self::
assertColumns($schema, 'custom_entity_blog_products',
['custom_entity_blog_id', 'product_id', 'product_version_id'
]);
self::
assertColumns($schema, 'product',
['customEntityBlogInheritedProducts', 'customEntityBlogInheritedTopSeller'
]);
self::
assertColumns($schema, 'category',
['custom_entity_blog_links_restrict_id', 'custom_entity_blog_links_set_null_id'
]);
} private function testEventSystem(IdsCollection
$ids, ContainerInterface
$container): void
{