block_in_page_not_found-8.x-4.1/tests/src/Functional/LoadTest.php
tests/src/Functional/LoadTest.php
<?php namespace Drupal\Tests\block_in_page_not_found\Functional; use Drupal\Core\Url; use Drupal\Tests\BrowserTestBase; /** * Simple test to ensure that main page loads with module enabled. * * @group block_in_page_not_found */ class LoadTest extends BrowserTestBase { /** * {@inheritdoc} */ protected $defaultTheme = 'stark'; /** * Modules to enable. * * @var array */ protected static $modules = ['block_in_page_not_found']; /** * A user with permission to administer site configuration. * * @var \Drupal\user\UserInterface */ protected $user; /** * {@inheritdoc} */ protected function setUp(): void { parent::setUp(); $this->user = $this->drupalCreateUser(['administer site configuration']); $this->drupalLogin($this->user); } /** * Tests that the home page loads with a 200 response. */ public function testLoad() { $this->drupalGet(Url::fromRoute('<front>')); $this->assertSession()->statusCodeEquals(200); } }