예제 #1
0
파일: TestCommon.php 프로젝트: rexmac/zf2
 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());
 }