lithium\test\Mocker::_namespace()
Will generate the namespace from the current mockee.
Parameters
-
string
$mockee
The fully namespaced
\Mock
class
Returns
stringSource
protected static function _namespace($mockee) {
$matches = array();
preg_match_all('/^(.*)\\\\Mock$/', $mockee, $matches);
return isset($matches[1][0]) ? $matches[1][0] : null;
}