Codeception:调用未定义的方法FunctionalTester::expectException
Codeception: Call to undefined method FunctionalTester::expectException
根据 Codeption documentation 我应该能够通过 运行 以下内容捕获 HttpException
:
$I->expectException(HttpException::class, function () {
$I->amOnRoute('that-doesnt/exist');
});
然而我得到了一个错误:
[RuntimeException] Call to undefined method
FunctionalTester::expectException
我正在使用Codeception 2.4.3
为了使 expectException
方法在测试中可用,必须在 functional.suite.yml 文件中启用断言模块:
modules:
enabled:
- Asserts
根据 Codeption documentation 我应该能够通过 运行 以下内容捕获 HttpException
:
$I->expectException(HttpException::class, function () {
$I->amOnRoute('that-doesnt/exist');
});
然而我得到了一个错误:
[RuntimeException] Call to undefined method FunctionalTester::expectException
我正在使用Codeception 2.4.3
为了使 expectException
方法在测试中可用,必须在 functional.suite.yml 文件中启用断言模块:
modules:
enabled:
- Asserts