htmlgen\test\RawTest::test_raw_string_returns_boxed_value_when_cast_to_string PHP Method

test_raw_string_returns_boxed_value_when_cast_to_string() public method

    public function test_raw_string_returns_boxed_value_when_cast_to_string()
    {
        $expected = 'candybox 2.0';
        $actual = (string) raw('candybox 2.0');
        $this->assertSame($expected, $actual);
    }