function ImageStylesPathAndUrlTest::setUp
Same name in other branches
- 9 core/modules/image/tests/src/Functional/ImageStylesPathAndUrlTest.php \Drupal\Tests\image\Functional\ImageStylesPathAndUrlTest::setUp()
- 10 core/modules/image/tests/src/Functional/ImageStylesPathAndUrlTest.php \Drupal\Tests\image\Functional\ImageStylesPathAndUrlTest::setUp()
- 11.x core/modules/image/tests/src/Functional/ImageStylesPathAndUrlTest.php \Drupal\Tests\image\Functional\ImageStylesPathAndUrlTest::setUp()
Overrides BrowserTestBase::setUp
File
-
core/
modules/ image/ tests/ src/ Functional/ ImageStylesPathAndUrlTest.php, line 46
Class
- ImageStylesPathAndUrlTest
- Tests the functions for generating paths and URLs for image styles.
Namespace
Drupal\Tests\image\FunctionalCode
protected function setUp() {
parent::setUp();
$this->style = ImageStyle::create([
'name' => 'style_foo',
'label' => $this->randomString(),
]);
$this->style
->save();
// Create a new language.
ConfigurableLanguage::createFromLangcode('fr')->save();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.