function ElementTest::testProperty
Tests the property() method.
File
-
core/
tests/ Drupal/ Tests/ Core/ Render/ ElementTest.php, line 20
Class
- ElementTest
- @coversDefaultClass \Drupal\Core\Render\Element[[api-linebreak]] @group Render
Namespace
Drupal\Tests\Core\RenderCode
public function testProperty() : void {
$this->assertTrue(Element::property('#property'));
$this->assertFalse(Element::property('property'));
$this->assertFalse(Element::property('property#'));
$this->assertFalse(Element::property(0));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.