示例#1
0
文件: TestCommon.php 项目: rexmac/zf2
 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());
 }