protected function ImageStylesPathAndUrlTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 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();
}