예제 #1
0
 public function testRenderWithOnlyClass()
 {
     $column = new Column();
     $column->addClassAttribute("class-name");
     $html = $column->render();
     $expected = array('tag' => 'div', 'attributes' => array('class' => 'col-sm-12 class-name'));
     $this->assertTag($expected, $html);
 }