function ArgumentTransformTermTest::termArgumentTransformationProvider
Same name in other branches
- 9 core/modules/taxonomy/tests/src/Kernel/Views/ArgumentTransformTermTest.php \Drupal\Tests\taxonomy\Kernel\Views\ArgumentTransformTermTest::termArgumentTransformationProvider()
- 10 core/modules/taxonomy/tests/src/Kernel/Views/ArgumentTransformTermTest.php \Drupal\Tests\taxonomy\Kernel\Views\ArgumentTransformTermTest::termArgumentTransformationProvider()
- 11.x core/modules/taxonomy/tests/src/Kernel/Views/ArgumentTransformTermTest.php \Drupal\Tests\taxonomy\Kernel\Views\ArgumentTransformTermTest::termArgumentTransformationProvider()
Provides data for testTermArgumentTransformation().
Return value
array[] Test data.
File
-
core/
modules/ taxonomy/ tests/ src/ Kernel/ Views/ ArgumentTransformTermTest.php, line 50
Class
- ArgumentTransformTermTest
- Tests taxonomy term argument transformation.
Namespace
Drupal\Tests\taxonomy\Kernel\ViewsCode
public function termArgumentTransformationProvider() {
return [
'space in the middle' => [
'name' => $this->randomMachineName() . ' ' . $this->randomMachineName(),
],
'space at the start' => [
'name' => ' ' . $this->randomMachineName(),
],
'space at the end' => [
'name' => $this->randomMachineName() . ' ',
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.