public function TokenTest::testValueCallback in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Render/Element/TokenTest.php \Drupal\Tests\Core\Render\Element\TokenTest::testValueCallback()
 
@covers ::valueCallback
@dataProvider providerTestValueCallback
File
- core/
tests/ Drupal/ Tests/ Core/ Render/ Element/ TokenTest.php, line 20  
Class
- TokenTest
 - @coversDefaultClass \Drupal\Core\Render\Element\Token @group Render
 
Namespace
Drupal\Tests\Core\Render\ElementCode
public function testValueCallback($expected, $input) {
  $element = [];
  $form_state = $this
    ->prophesize(FormStateInterface::class)
    ->reveal();
  $this
    ->assertSame($expected, Token::valueCallback($element, $input, $form_state));
}