Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

basic mock is not working #164

Open
Chig8 opened this issue Dec 6, 2018 · 2 comments
Open

basic mock is not working #164

Chig8 opened this issue Dec 6, 2018 · 2 comments

Comments

@Chig8
Copy link

Chig8 commented Dec 6, 2018

under objects/system
no name space

`class UserCheck
{
    public $name;
    public function setName($name){
        return $this->name = $name;
    }
    public function save(){
        return 10;
    }
    public function getName(){
        return $this->name;
    }
}`

under tests\codeception\unit\objects\system

` class EmployeeTest {
       function testUserCreate()
       {
           $user = test::double('UserCheck', ['save' => null])->make();
          $this->assertEquals('null', $user->save());
      }
}`

composer.json

`       "codeception/aspect-mock": "2.2.0",
        "phpunit/phpunit": "5.7.27",
`

tests/codeception/_bootstrap.php

`require __DIR__.'/../../../../tools/tests/vendor/autoload.php';

$kernel = \AspectMock\Kernel::getInstance();

// https://github.com/Codeception/AspectMock#customization
$kernel->init([
	'debug' => true,
    'cacheDir' => __DIR__.'/_cache', // Cache is disabled because it wasn't being flushed reliably when the code was changed.
    'appDir' => __DIR__.'/../../../../tools/tests/vendor',
	'includePaths' => [
		__DIR__.'/../../objects', // Mock everything in the objects dir
	]

]);`

error

` codeception/unit/objects/system/EmployeeTest.php:testUserCreate
Failed asserting that 10 matches expected 'null'.
`
@Chig8 Chig8 changed the title i am unable to mock class methods aspect mock not working after update my version from 0.5 to 2.0 Dec 10, 2018
@Chig8 Chig8 changed the title aspect mock not working after update my version from 0.5 to 2.0 basic mock is not working Dec 14, 2018
@vdebes
Copy link

vdebes commented Jan 30, 2019

It looks like I have the same problem here https://github.com/vdebes/CodeceptionTesting/blob/master/tests/unit/DummyTest.php (check methods with @broken annotation)

@erikverheij
Copy link

I'm having the same issue. Locking goaop/framework to =2.2.0 fixed the issue for us for the meantime.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants