示例#1
0
 public function testSetOptionsFailure()
 {
     $table = new ezcConsoleTable($this->output, 80);
     try {
         $table->setOptions(23);
     } catch (ezcBaseValueException $e) {
         return;
     }
     $this->fail("ezcBaseValueException not thrown on invalid Parameter to setOptions().");
 }