예제 #1
0
파일: TestCommon.php 프로젝트: stunti/zf2
 public function testBarHeight()
 {
     $this->_object->setBarHeight(1);
     $this->assertSame(1, $this->_object->getBarHeight());
     $this->_object->setBarHeight(true);
     $this->assertSame(1, $this->_object->getBarHeight());
     $this->_object->setBarHeight('200a');
     $this->assertSame(200, $this->_object->getBarHeight());
 }