function BookTest::testAdminBookListing
Tests the administrative listing of all books.
File
-
core/
modules/ book/ tests/ src/ Functional/ BookTest.php, line 606
Class
- BookTest
- Create a book, add pages, and test book interface.
Namespace
Drupal\Tests\book\FunctionalCode
public function testAdminBookListing() : void {
// Create a new book.
$nodes = $this->createBook();
// Load the book page and assert the created book title is displayed.
$this->drupalLogin($this->adminUser);
$this->drupalGet('admin/structure/book');
$this->assertSession()
->pageTextContains($this->book
->label());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.