function ViewExecutableTest::testGenerateHandlerId
Tests generate handler id.
@legacy-covers ::generateHandlerId
File
-
core/
modules/ views/ tests/ src/ Unit/ ViewExecutableTest.php, line 376
Class
Namespace
Drupal\Tests\views\UnitCode
public function testGenerateHandlerId() : void {
// Test the generateHandlerId() method.
$test_ids = [
'test' => 'test',
'test_1' => 'test_1',
];
$this->assertEquals('new', ViewExecutable::generateHandlerId('new', $test_ids));
$this->assertEquals('test_2', ViewExecutable::generateHandlerId('test', $test_ids));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.