TranslationTest.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/modules/field/tests/src/Kernel/TranslationTest.php
- 8.9.x core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php
- 10 core/modules/field/tests/src/Kernel/TranslationTest.php
- 10 core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php
- 11.x core/modules/field/tests/src/Kernel/TranslationTest.php
- 11.x core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php
Namespace
Drupal\Tests\Core\AnnotationFile
-
core/
tests/ Drupal/ Tests/ Core/ Annotation/ TranslationTest.php
View source
<?php
namespace Drupal\Tests\Core\Annotation;
use Drupal\Core\Annotation\Translation;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\Core\Annotation\Translation
* @group Annotation
*/
class TranslationTest extends UnitTestCase {
/**
* The translation manager used for testing.
*
* @var \Drupal\Core\StringTranslation\TranslationInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $translationManager;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
$this->translationManager = $this->getStringTranslationStub();
}
/**
* @covers ::get
*
* @dataProvider providerTestGet
*/
public function testGet(array $values, $expected) {
$container = new ContainerBuilder();
$container->set('string_translation', $this->translationManager);
\Drupal::setContainer($container);
$annotation = new Translation($values);
$this->assertSame($expected, (string) $annotation->get());
}
/**
* Provides data to self::testGet().
*/
public function providerTestGet() {
$data = [];
$data[] = [
[
'value' => 'Foo',
],
'Foo',
];
$random = $this->randomMachineName();
$random_html_entity = '&' . $random;
$data[] = [
[
'value' => 'Foo @bar @baz %qux',
'arguments' => [
'@bar' => $random,
'@baz' => $random_html_entity,
'%qux' => $random_html_entity,
],
'context' => $this->randomMachineName(),
],
'Foo ' . $random . ' &' . $random . ' <em class="placeholder">&' . $random . '</em>',
];
return $data;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
TranslationTest | @coversDefaultClass \Drupal\Core\Annotation\Translation @group Annotation |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.