验证 PHPUnit 中的异常处理
在单元测试中,断言抛出异常可以验证代码对异常情况的处理。 PHPUnit 提供了多种方法来执行此断言。
expectException
PHPUnit 的 ExpectException() 方法允许您测试是否抛出特定类型的异常。您可以在其参数中指定异常类。例如:
<code class="php">$this->expectException(InvalidArgumentException::class);</code>
或者,如果您使用 PHPUnit 5.2 或更低版本,则可以使用 setExpectedException()。
<code class="php">$this->setExpectedException(InvalidArgumentException::class);</code>
跟随在 ExpectException() 或 setExpectedException() 后面call,执行应该抛出异常的代码。例如:
<code class="php">exampleMethod($anInvalidArgument);</code>
文档和深度覆盖
参考 PHPUnit 的 [expectException() 文档](https://phpunit.readthedocs.io/ en/latest/assertions.html#expectingException) 有关此方法的更多信息。
[PHPUnit 作者提供了一篇有关最佳实践的文章](https://www.phpunit.de/manual/current/en /fixtures.html#fixtures.exception) 用于测试异常。本文讨论了各种方法并提供了有效断言异常处理的指导。
以上是如何验证 PHPUnit 中的异常处理?的详细内容。更多信息请关注PHP中文网其他相关文章!