Example #1
0
 /**
  * @expectedException Exception
  */
 public function testSetOptions()
 {
     $this->table->setOptions('foo', 'bar');
     $this->table->setOptions(array('foo2' => 'bar2', 'foo3' => 'bar3'));
     $this->table->setOptions('foo', 'bar', 'baz');
 }