Example #1
0
 public function testBooleanColumn()
 {
     $column = new Boolean($this->table, 'test');
     $column->setData(['test' => 0]);
     $output = $column->getValue();
     $this->assertTag(['tag' => 'span', 'attributes' => ['class' => 'label label-danger'], 'content' => 'No'], $output);
 }