You are here

public function BookTest::testSettingsForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/book/tests/src/Functional/BookTest.php \Drupal\Tests\book\Functional\BookTest::testSettingsForm()
  2. 10 core/modules/book/tests/src/Functional/BookTest.php \Drupal\Tests\book\Functional\BookTest::testSettingsForm()

Tests that the book settings form can be saved without error.

File

core/modules/book/tests/src/Functional/BookTest.php, line 731

Class

BookTest
Create a book, add pages, and test book interface.

Namespace

Drupal\Tests\book\Functional

Code

public function testSettingsForm() {
  $this
    ->drupalLogin($this->adminUser);
  $this
    ->drupalGet('admin/structure/book/settings');
  $this
    ->submitForm([], 'Save configuration');
}