htmlgen\test\HtmlTest::test_html_creates_elements_that_can_be_coerced_into_strings PHP Method

test_html_creates_elements_that_can_be_coerced_into_strings() public method

    public function test_html_creates_elements_that_can_be_coerced_into_strings()
    {
        $expected = '<cat></cat>';
        $actual = (string) html('cat');
        $this->assertSame($expected, $actual);
    }