htmlgen\test\HtmlTest::test_html_accepts_first_child_assoc_as_attributes_and_children PHP Method

test_html_accepts_first_child_assoc_as_attributes_and_children() public method

    public function test_html_accepts_first_child_assoc_as_attributes_and_children()
    {
        $expected = '<bees variety="honeybees">makealotofhoney</bees>';
        $actual = (string) html('bees', ['variety' => 'honeybees'], 'make', ['a', 'lot'], 'of', 'honey');
        $this->assertSame($expected, $actual);
    }