flag-8.x-4.x-dev/tests/src/Unit/Ajax/ActionLinkFlashCommandTest.php
tests/src/Unit/Ajax/ActionLinkFlashCommandTest.php
<?php
declare(strict_types=1);
namespace Drupal\Tests\flag\Unit\Ajax;
use Drupal\Tests\UnitTestCase;
use Drupal\flag\Ajax\ActionLinkFlashCommand;
/**
* @coversDefaultClass \Drupal\flag\Ajax\ActionLinkFlashCommand
* @group flag
*/
class ActionLinkFlashCommandTest extends UnitTestCase {
/**
* The Random Utility.
*
* @var \Drupal\Component\Utility\Random
*/
protected $random;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->random = $this->getRandomGenerator();
}
/**
* @covers ::render
*/
public function testRender() {
// The first two characters of the CSS selector must be of the form
// '\.[a-z A-Z]'.
$selector = '.' . $this->random->name(10, TRUE);
$message = $this->random->string(100, TRUE);
$command = new ActionLinkFlashCommand($selector, $message);
$expected = [
'command' => 'actionLinkFlash',
'selector' => $selector,
'message' => $message,
];
$this->assertEquals($expected, $command->render(), 'The command was created as expected ');
}
}
