Exemple #1
0
 public function testCheckParamsFontWithOrientation()
 {
     $this->setExpectedException('\\Zend\\Barcode\\Object\\Exception');
     $this->_object->setText('0');
     $this->_object->setFont(1);
     $this->_object->setOrientation(45);
     $this->_object->checkParams();
 }