vote up 2 vote down star

My quest of starting to use namespaces in PHP keeps continuing. This time PHPUnit gives me problems. My setup() method is like this:

$test = new \MyNamespace\NonPersistentStorage(); // works
$mock = $this->getMock('\\MyNamespace\\NonPersistentStorage'); // doesn't work

The getMock() method only results in PHP looking for a NonPersistentStorage class. Not within the namespace.

Q: What do I need to change to get the getMock() method look for the class in the namespace?

Edit: The double backslash is not the problem. Also see: the manual: (quote)

'Inside a single-quoted string, the backslash escape sequence is much safer to use, but it is still recommended practice to escape backslashes in all strings as a best practice.'

flag

80% accept rate

1 Answer

vote up 1 vote down check

String references to classes generally don't have the leading backslash. Try removing it and tell us if it works.

EDIT: and if it doesn't, try class_alias to create an alias in the global namespace for that class. However, that would be an ugly solution...

link|flag
Tried but doesn't work. – koen Aug 11 at 18:32
Well, by "leading backslash" I meant both leading backslashes, but I hope you understood it anyway. – Ignas R Aug 11 at 18:34
Oops, sorry. It doesn't work either though. – koen Aug 11 at 18:36
Try the class_alias workaround then (in case you didn't notice the edit). – Ignas R Aug 11 at 18:43
Thought this worked: class_alias('\\MyNamespace\\NonPersistentStorage', 'NonPersistentStorage'); $mock = $this->getMock('NonPersistentStorage'); but it gives a 'cannot redeclare class' error. Maybe I'm doing it wrong? – koen Aug 11 at 19:01
show 6 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.