function 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.