驗證 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中文網其他相關文章!