protected function CommentItemTest::setUp in Drupal 10
Same name and namespace in other branches
- 8 core/modules/comment/tests/src/Kernel/CommentItemTest.php \Drupal\Tests\comment\Kernel\CommentItemTest::setUp()
 - 9 core/modules/comment/tests/src/Kernel/CommentItemTest.php \Drupal\Tests\comment\Kernel\CommentItemTest::setUp()
 
File
- core/
modules/ comment/ tests/ src/ Kernel/ CommentItemTest.php, line 28  
Class
- CommentItemTest
 - Tests the new entity API for the comment field type.
 
Namespace
Drupal\Tests\comment\KernelCode
protected function setUp() : void {
  parent::setUp();
  $this
    ->installEntitySchema('comment');
  $this
    ->installSchema('comment', [
    'comment_entity_statistics',
  ]);
  $this
    ->installConfig([
    'comment',
  ]);
}