Example #1
0
 public function testBarThinWidth()
 {
     $this->_object->setBarThinWidth(1);
     $this->assertSame(1, $this->_object->getBarThinWidth());
     $this->_object->setBarThinWidth(true);
     $this->assertSame(1, $this->_object->getBarThinWidth());
     $this->_object->setBarThinWidth('200a');
     $this->assertSame(200, $this->_object->getBarThinWidth());
 }