function ForumUninstallValidatorTest::setUp

Same name and namespace in other branches
  1. 9 core/modules/forum/tests/src/Unit/ForumUninstallValidatorTest.php \Drupal\Tests\forum\Unit\ForumUninstallValidatorTest::setUp()
  2. 10 core/modules/forum/tests/src/Unit/ForumUninstallValidatorTest.php \Drupal\Tests\forum\Unit\ForumUninstallValidatorTest::setUp()
  3. 11.x core/modules/forum/tests/src/Unit/ForumUninstallValidatorTest.php \Drupal\Tests\forum\Unit\ForumUninstallValidatorTest::setUp()

Overrides UnitTestCase::setUp

File

core/modules/forum/tests/src/Unit/ForumUninstallValidatorTest.php, line 25

Class

ForumUninstallValidatorTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21forum%21src%21ForumUninstallValidator.php/class/ForumUninstallValidator/8.9.x" title="Prevents forum module from being uninstalled whilst any forum nodes exist or there are any terms in the forum vocabulary." class="local">\Drupal\forum\ForumUninstallValidator</a> @group forum

Namespace

Drupal\Tests\forum\Unit

Code

protected function setUp() {
    parent::setUp();
    $this->forumUninstallValidator = $this->getMockBuilder('Drupal\\forum\\ForumUninstallValidator')
        ->disableOriginalConstructor()
        ->setMethods([
        'hasForumNodes',
        'hasTermsForVocabulary',
        'getForumVocabulary',
    ])
        ->getMock();
    $this->forumUninstallValidator
        ->setStringTranslation($this->getStringTranslationStub());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.