function ForumUninstallValidatorTest::testValidateNotForum

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

@covers ::validate

File

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

Class

ForumUninstallValidatorTest
@coversDefaultClass \Drupal\forum\ForumUninstallValidator[[api-linebreak]] @group forum

Namespace

Drupal\Tests\forum\Unit

Code

public function testValidateNotForum() {
  $this->forumUninstallValidator
    ->expects($this->never())
    ->method('hasForumNodes');
  $this->forumUninstallValidator
    ->expects($this->never())
    ->method('hasTermsForVocabulary');
  $this->forumUninstallValidator
    ->expects($this->never())
    ->method('getForumVocabulary');
  $module = 'not_forum';
  $expected = [];
  $reasons = $this->forumUninstallValidator
    ->validate($module);
  $this->assertSame($expected, $this->castSafeStrings($reasons));
}

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