
| Current Path : /var/www/html/rocksensor3/web/core/modules/locale/tests/src/Functional/ |
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/modules/locale/tests/src/Functional/LocaleInstallTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\locale\Functional;
use Drupal\Tests\BrowserTestBase;
/**
* Test installation of Locale module.
*
* @group locale
*/
class LocaleInstallTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'system',
'file',
'language',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Tests Locale install message.
*/
public function testLocaleInstallMessage(): void {
$admin_user = $this->drupalCreateUser([
'access administration pages',
'administer modules',
]);
$this->drupalLogin($admin_user);
$edit = [];
$edit['modules[locale][enable]'] = 'locale';
$this->drupalGet('admin/modules');
$this->submitForm($edit, 'Install');
$this->assertSession()->statusMessageContains('available translations', 'status');
}
}