一旦我创建了接口类并在我的用户类中实现它,我的测试就停止了工作。测试抛出此错误:
Class app\models\MyInterface was not found by locator
我想通了,Go\ParserReflection\ReflectionEngine
这会interface_exists($fullClassName, false)
返回错误。
知道如何解决吗?
编辑
我添加了一个功能测试,现在它找不到我用来扩展的 BaseController 类。
Class app\controllers\BaseController was not found by locator
控制器甚至不在我的$kernel->init(['includePaths' => ...])
,所以我认为 goaop 应该忽略它?
任何输入将不胜感激。