vote up 4 vote down star

What is the way to avoid phpunit having to call the constructor for a mock object? Otherwise I would need a mock object as constructor argument, another one for that etc. The api seems to be like this:

getMock($className, $methods = array(), array $arguments = array(),
        $mockClassName = '', $callOriginalConstructor = TRUE,
        $callOriginalClone = TRUE, $callAutoload = TRUE)

I don't get it to work. It still complains about the constructor argument, even with $callOriginalConstructor set to false.

flag

7 Answers

vote up 3 vote down

Did any of you actually read the question before you answered it?

    // Get a Mock Soap Client object to work with.
    $classToMock = 'SoapClient';
    $methodsToMock = array('__getFunctions');
    $mockConstructorParams = array('fake wsdl url', array());
    $mockClassName = 'MyMockSoapClient';
    $callMockConstructor = false;
    $mockSoapClient = $this->getMock($classToMock,
                                     $methodsToMock,
                                     $mockConstructorParams,
                                     $mockClassName,
                                     $callMockConstructor);

You guys should try knowing what you are talking about before you answer a question. The original poster even showed you the getMock signature ...

link|flag
vote up 1 vote down

There is, an ugly one.

Use unserialize() on a previously serialized object. PHP will call __wakeup instead of __construct.

link|flag
vote up 0 vote down

Maybe you are doing too much in your constructor. Consider moving everything apart from simple property setting and dependency injection into other methods.

Constructors considered harmful

link|flag
vote up 0 vote down

I only have one object in the constructor and it is a dependency injection. So I don't think I have a design problem there.

link|flag
vote up 0 vote down

Can you post your constuctor and test code?

link|flag
vote up 0 vote down

Perhaps you need to create a stub to pass in as the constructor argument. Then you can break that chain of mock objects.

link|flag
vote up 0 vote down

PHPUnit is designed to call the constructor on mocked objects; to prevent this you should either:

  1. Inject a mock object as a dependency into the object you're having trouble mocking
  2. Create a test class that extends the class you're trying to call that doesn't call the parent constructor
link|flag

Your Answer

Get an OpenID
or

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