Git Product home page Git Product logo

Comments (5)

padraic avatar padraic commented on May 12, 2024

You're right that mocked classes now feature an __isset() method. 0.7 uses it for public property mocking.

Do you have an actual test case and the relevant class I can use to replicate the issue? If I follow what you are mocking, and how, I'll be able to diagnose the problem.

from mockery.

dmitrybelyakov avatar dmitrybelyakov commented on May 12, 2024

Hi and thanks for quick response.
I've composed two files to reproduce issue, that are quite straightforward. Let's assume we do all the application bootstrapping and Mockery setup in test case superclass.

The class itself

class Test_Magic
{
protected $_properties = array();

public function __construct()
{
}

public function __isset($property=null)
{
    return isset($this->_properties[$property]);
}

}

And a test:

class Test_MagicTest extends Shift_Test_Case
{
public function setUp()
{
parent::setUp();
$this->appBootstrap();
}

public function testIsset()
{
    $form = Mockery::mock('Zend_Form');
    $mock = Mockery::mock('Test_Magic');
}

}

This throws the BadMethodCallException: Method Test_Magic::__isset() does not exist on this mock object
When test reaches tearDown().

Please let me now if I can provide any further info or assis in any way.

from mockery.

dmitrybelyakov avatar dmitrybelyakov commented on May 12, 2024

Please excuse github markdown

from mockery.

padraic avatar padraic commented on May 12, 2024

Thanks for that. I've committed a small patch to exclude __isset() from being replaced. That seems to resolve the exception. Let me know if the git master is now running clean for you.

from mockery.

dmitrybelyakov avatar dmitrybelyakov commented on May 12, 2024

Yes, that did it. Now everything is back to normal. Thanks a lot.

from mockery.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.