Jyxo\HtmlTest::testConstruct PHP Method

testConstruct() public method

Tests the __construct() method.
See also: Jyxo\Html::__construct()
public testConstruct ( )
    public function testConstruct()
    {
        $this->expectException(\LogicException::class);
        $html = new Html();
    }