gpt4 book ai didi

php - 来自测试方法正在使用的同一类的模拟方法

转载 作者:行者123 更新时间:2023-11-28 20:08:00 25 4
gpt4 key购买 nike

我有以下代码:

class Foo() {
public function someMethod() {
...
if ($this->otherMethod($lorem, $ipsum)) {
...
}
...
}
}

我正在尝试测试 someMethod(),我不想测试 otherMethod(),因为它非常复杂并且我有专门的测试 - 在这里我只想模拟它并返回特定值。所以我尝试:

$fooMock = Mockery::mock(Foo::class)
->makePartial();
$fooMock->shouldReceive('otherMethod')
->withAnyArgs()
->andReturn($otherMethodReturnValue);

在测试中我正在打电话

$fooMock->someMethod()

但它使用原始的(不是模拟的)方法 otherMethod() 并打印错误。

 Argument 1 passed to Mockery_3_Foo::otherMethod() must be an instance of SomeClass, boolean given

你能帮帮我吗?

最佳答案

使用它作为模板来模拟一个方法:

<?php

class FooTest extends \Codeception\TestCase\Test{

/**
* @test
* it should give Joy
*/
public function itShouldGiveJoy(){
//Mock otherMethod:
$fooMock = Mockery::mock(Foo::class)
->makePartial();
$mockedValue = TRUE;
$fooMock->shouldReceive('otherMethod')
->withAnyArgs()
->andReturn($mockedValue);

$returnedValue = $fooMock->someMethod();
$this->assertEquals('JOY!', $returnedValue);
$this->assertNotEquals('BOO!', $returnedValue);
}
}

class Foo{

public function someMethod() {
if($this->otherMethod()) {
return "JOY!";
}
return "BOO!";
}

public function otherMethod(){
//In the test, this method is going to get mocked to return TRUE.
//that is because this method ISN'T BUILT YET.
return false;
}
}

enter image description here

关于php - 来自测试方法正在使用的同一类的模拟方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48666043/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com