示例#1
0
文件: TestCommon.php 项目: stunti/zf2
 public function testSetConfig()
 {
     $config = new Config\Config(array('barHeight' => 150, 'unkownProperty' => 'aValue'));
     $this->_object->setConfig($config);
     $this->assertEquals(150, $this->_object->getBarHeight());
 }