我正在为我的symfony2项目使用codeception。 我想分别运行一个功能测试,这取决于另一个类。 这是我的代码。
class CheckoutFlowTestCest extends CheckoutFlowBaseCest
我得到的错误是:
Class CheckoutFlowBaseCest not found.
当我运行全功能测试时,没有错误。
答案 0 :(得分:1)
我在之前的评论中回答了这个问题。
解决方法是require_once父类的文件。
require_once __DIR__ . '/CheckoutFlowBaseCest.php';
这是必要的,因为Codeception测试不是自动加载的。