function LocaleTranslationTest::testSerializable
Tests that \Drupal\locale\LocaleTranslation is serializable.
File
-
core/
modules/ locale/ tests/ src/ Kernel/ LocaleTranslationTest.php, line 44
Class
Namespace
Drupal\Tests\locale\KernelCode
public function testSerializable() : void {
/** @var \Drupal\locale\LocaleTranslation $translation */
$translation = $this->container
->get('string_translator.locale.lookup');
$this->assertInstanceOf(LocaleTranslation::class, $translation);
// Ensure that the \Drupal\locale\LocaleTranslation::$translations property
// has some cached translations in it. Without this, serialization will not
// actually be tested fully.
$translation->getStringTranslation('es', 'test', '');
// Prove that serialization and deserialization works without errors.
$this->assertNotNull($translation);
$unserialized = unserialize(serialize($translation));
$this->assertInstanceOf(LocaleTranslation::class, $unserialized);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.