You are here

public function VocabularyUiTest::testTaxonomyAdminNoVocabularies in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/tests/src/Functional/VocabularyUiTest.php \Drupal\Tests\taxonomy\Functional\VocabularyUiTest::testTaxonomyAdminNoVocabularies()

Tests the vocabulary overview with no vocabularies.

File

core/modules/taxonomy/tests/src/Functional/VocabularyUiTest.php, line 123

Class

VocabularyUiTest
Tests the taxonomy vocabulary interface.

Namespace

Drupal\Tests\taxonomy\Functional

Code

public function testTaxonomyAdminNoVocabularies() {

  // Delete all vocabularies.
  $vocabularies = Vocabulary::loadMultiple();
  foreach ($vocabularies as $key => $vocabulary) {
    $vocabulary
      ->delete();
  }

  // Confirm that no vocabularies are found in the database.
  $this
    ->assertEmpty(Vocabulary::loadMultiple(), 'No vocabularies found.');
  $this
    ->drupalGet('admin/structure/taxonomy');

  // Check the default message for no vocabularies.
  $this
    ->assertSession()
    ->pageTextContains('No vocabularies available.');
}