htmlgen\test\HtmlTest::test_html_zen_element_with_id_and_id_attribute PHP Method

test_html_zen_element_with_id_and_id_attribute() public method

    public function test_html_zen_element_with_id_and_id_attribute()
    {
        $expected = '<div id="override"></div>';
        $actual = (string) html('div#main', ['id' => 'override']);
        $this->assertSame($expected, $actual);
    }