protected function CommentOrphanTest::setUp in Drupal 10
Same name and namespace in other branches
- 8 core/modules/comment/tests/src/Kernel/CommentOrphanTest.php \Drupal\Tests\comment\Kernel\CommentOrphanTest::setUp()
- 9 core/modules/comment/tests/src/Kernel/CommentOrphanTest.php \Drupal\Tests\comment\Kernel\CommentOrphanTest::setUp()
File
- core/
modules/ comment/ tests/ src/ Kernel/ CommentOrphanTest.php, line 27
Class
- CommentOrphanTest
- Tests loading and rendering orphan comments.
Namespace
Drupal\Tests\comment\KernelCode
protected function setUp() : void {
parent::setUp();
$this
->installConfig([
'user',
]);
$this
->installEntitySchema('date_format');
$this
->installEntitySchema('comment');
$this
->installSchema('comment', [
'comment_entity_statistics',
]);
}