diff -r 5b37998e522e -r 162c1de6545a web/lib/Zend/Tool/Project/Context/Zf/TestLibraryNamespaceDirectory.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/Zend/Tool/Project/Context/Zf/TestLibraryNamespaceDirectory.php Fri Mar 11 15:05:35 2011 +0100 @@ -0,0 +1,88 @@ +_namespaceName = $this->_resource->getAttribute('namespaceName'); + $this->_filesystemName = $this->_namespaceName; + parent::init(); + return $this; + } + + /** + * getPersistentAttributes() + * + * @return array + */ + public function getPersistentAttributes() + { + $attributes = array(); + $attributes['namespaceName'] = $this->_namespaceName; + + return $attributes; + } + +}