You are here

public function ConfigNamesMapperTest::testHasTranslatable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/config_translation/tests/src/Unit/ConfigNamesMapperTest.php \Drupal\Tests\config_translation\Unit\ConfigNamesMapperTest::testHasTranslatable()

Tests ConfigNamesMapper::hasTranslatable().

@dataProvider providerTestHasTranslatable

Parameters

array $mock_return_values: An array of values that the mocked configuration mapper manager should return for hasTranslatable().

bool $expected: The expected return value of ConfigNamesMapper::hasTranslatable().

File

core/modules/config_translation/tests/src/Unit/ConfigNamesMapperTest.php, line 533
Contains \Drupal\Tests\config_translation\Unit\ConfigNamesMapperTest.

Class

ConfigNamesMapperTest
Tests the functionality provided by the configuration names mapper.

Namespace

Drupal\Tests\config_translation\Unit

Code

public function testHasTranslatable(array $mock_return_values, $expected) {

  // As the configuration names are arbitrary, simply use integers.
  $config_names = range(1, count($mock_return_values));
  $this->configNamesMapper
    ->setConfigNames($config_names);
  $map = array();
  foreach ($config_names as $i => $config_name) {
    $map[] = isset($mock_return_values[$i]) ? array(
      $config_name,
      $mock_return_values[$i],
    ) : array();
  }
  $this->configMapperManager
    ->expects($this
    ->any())
    ->method('hasTranslatable')
    ->will($this
    ->returnValueMap($map));
  $result = $this->configNamesMapper
    ->hasTranslatable();
  $this
    ->assertSame($expected, $result);
}