예제 #1
0
 public function testCreation()
 {
     $columns = new Columns();
     //set options both ways
     $columns->setOptions('a', 'b', 'c');
     $columns->setOptions(array('a', 'b', 'c'));
     return $columns;
 }