我是AspectMock的新手,因为我需要找到一种方法来模拟静态方法调用(无法更改应用程序,它在测试时写得并不好,而且非常庞大)
这是我的鞋带:

<?php
include __DIR__.'/../vendor/autoload.php'; // composer autoload

$kernel = \AspectMock\Kernel::getInstance();
$kernel->init([
    'debug' => true,
    'includePaths' => [__DIR__.'/../src'] // <-- not really sure what this ought to be
]);

这是我的测试
<?php
use AspectMock\Test as AspectMock;

class YoutubeTest extends PHPUnit_Framework_TestCase
{
    protected function tearDown()
    {
        AspectMock::clean(); // remove all registered test doubles
    }

    public function testDoubleClass()
    {
        $youtube = new JT_Cron_Youtube(null, array());

        $videomodel = AspectMock::double('ACQ_Model_VideoQueue', ['save' => null]);
        \ACQ_Model_Videoqueue::count();
        \ACQ_Model_Videoqueue::count();
        $videomodel->verifyInvokedMultipleTimes('count', 2);
    }
}

…但是,它仍然会给我错误,表明静态方法没有被模拟。我不确定aspectmock有多神奇,我只是从文档中获取了这个:
https://github.com/Codeception/AspectMock
有没有什么我做得不对,或者误解的地方?

最佳答案

从我观察到的情况来看,要为其创建双倍文件的源文件必须列在includepaths配置中。
在您的情况下,请确保添加了包含acq_model_videoqueue代码的文件夹。

10-08 18:17