ReflectionException:Class / ModelGenerator不存在[PhpUnit newbie]

时间:2014-01-27 21:52:19

标签: php reflection phpunit

我在文件类ModelGenerator中有一个受保护的方法:

C:\src\x\y\ModelGenerator.php

对它的测试来自文件:

中的ModelGeneratorTest类
C:\test\x\y\ModelGeneratorTest.php

ReflectionException:执行

时不存在Class / ModelGenerator
   public function testGetTable()
{

    $method = new \ReflectionMethod("ModelGenerator", 'getTable');
    $method->setAccessible(true);
    echo $method->invoke(ModelGenerator);
}

我也用过:

namespace x\y;

解决:报价是问题

0 个答案:

没有答案