Example #1
0
 public function testRenderWithStyle()
 {
     $column = new Column();
     $column->addStyleAttribute('color:red');
     $html = $column->render();
     $expected = array('tag' => 'div', 'attributes' => array('class' => 'col-sm-12', 'style' => 'color:red'));
     $this->assertTag($expected, $html);
 }