Example #1
0
 function testDraw()
 {
     $blocks = new ListBlock('one', 'two');
     ob_start();
     $blocks->draw();
     $content = ob_get_clean();
     $this->assertEquals('onetwo', $content);
 }