public function testGetArrayCopy()
 {
     $params = new ConfigurableArrayObject($this->getExampleValues());
     $array = $params->getArrayCopy();
     $this->assertTrue(is_array($array));
     $this->assertTrue(is_array($array['nested']));
 }