我正在尝试使用codeception设置单元测试。我已按照guide进行操作,并提供以下信息:
unit.suite.yml
:
class_name: UnitTester
modules:
enabled: [UnitHelper, Asserts]
当我尝试运行codecept build
时,我收到以下异常:
[Codeception\Exception\Configuration]
UnitHelper could not be found and loaded
答案 0 :(得分:0)
UnitHelper不是内置类,而是为单元套件生成的辅助类。
您必须执行此命令才能创建它:
codecept generate:suite unit Unit