public function testBlockquoteCite()
 {
     $expected = '<blockquote><cite>John Smith</cite></blockquote>';
     $result = Html5Gen::blockquote(['cite' => ['content' => 'John Smith']]);
     $this->assertEquality($expected, $result);
 }