Esempio n. 1
0
 public function testBarThickWidth()
 {
     $this->_object->setBarThickWidth(1);
     $this->assertSame(1, $this->_object->getBarThickWidth());
     $this->_object->setBarThickWidth(true);
     $this->assertSame(1, $this->_object->getBarThickWidth());
     $this->_object->setBarThickWidth('200a');
     $this->assertSame(200, $this->_object->getBarThickWidth());
 }