public function AjaxCommandsTest::testRestripeCommand in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Ajax/AjaxCommandsTest.php \Drupal\Tests\Core\Ajax\AjaxCommandsTest::testRestripeCommand()
 - 9 core/tests/Drupal/Tests/Core/Ajax/AjaxCommandsTest.php \Drupal\Tests\Core\Ajax\AjaxCommandsTest::testRestripeCommand()
 
@covers \Drupal\Core\Ajax\RestripeCommand
File
- core/
tests/ Drupal/ Tests/ Core/ Ajax/ AjaxCommandsTest.php, line 324  
Class
- AjaxCommandsTest
 - Test coverage for various classes in the \Drupal\Core\Ajax namespace.
 
Namespace
Drupal\Tests\Core\AjaxCode
public function testRestripeCommand() {
  $command = new RestripeCommand('#page-title');
  $expected = [
    'command' => 'restripe',
    'selector' => '#page-title',
  ];
  $this
    ->assertEquals($expected, $command
    ->render());
}