
| Current Path : /var/www/html/rocksensor3/web/core/tests/Drupal/FunctionalTests/Installer/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor3/web/core/tests/Drupal/FunctionalTests/Installer/SiteSettingsFormTest.php |
<?php
declare(strict_types=1);
namespace Drupal\FunctionalTests\Installer;
use Drupal\Tests\BrowserTestBase;
/**
* Tests the extension of the site settings form.
*
* @group Installer
*/
class SiteSettingsFormTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['install_form_test'];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Confirms that the form is extensible.
*/
public function testSiteSettingsForm(): void {
// Test that the form page can be loaded without errors.
$this->drupalGet('test-form');
$this->assertSession()->statusCodeEquals(200);
}
}