"));
self::assertSame("pouet", c::to_string(["pouet"]));
self::assertSame("hello world", c::to_string(["hello", "world"]));
self::assertSame("hello1 world", c::to_string(["hello1", "world"]));
self::assertSame("hello", c::to_string(["hello", ""]));
self::assertSame("world", c::to_string(["", "world"]));
self::assertSame("hello,world", c::to_string(["hello,", "world"]));
self::assertSame("hello world", c::to_string(["hello ", "world"]));
self::assertSame("hello. world", c::to_string(["hello.", "world"]));
self::assertSame("hello.", c::to_string(["hello.", ""]));
self::assertSame(<<title<q/>
hellobrave<q/>world
EOT, c::to_string([
[v::H1, "title"],
[v::P, [
"hello",
[v::SPAN, "brave"],
[v::SPAN, ["world"]],
]],
]));
self::assertSame(<<contentprintable
EOT, c::to_string([
new AContent(),
new APrintable(),
]));
}
}