| Current Path : /var/www/www.indacotrentino.com/www/vendor/phpgt/dom/test/phpunit/HTMLElement/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/phpgt/dom/test/phpunit/HTMLElement/HTMLLiElementTest.php |
<?php
namespace Gt\Dom\Test\HTMLElement;
use Gt\Dom\HTMLDocument;
class HTMLLiElementTest extends HTMLElementTestCase {
public function testValue():void {
$document = new HTMLDocument();
$sut = $document->createElement("li");
self::assertPropertyAttributeCorrelateNumber($sut, "int", "value");
}
}