W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
<phpunit>
元素的屬性用于配置 PHPUnit 的核心功能。
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
<!--bootstrap="/path/to/bootstrap.php"-->
cacheTokens="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
printerClass="PHPUnit_TextUI_ResultPrinter"
<!--printerFile="/path/to/ResultPrinter.php"-->
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
<!--testSuiteLoaderFile="/path/to/StandardTestSuiteLoader.php"-->
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
verbose="false">
<!-- ... -->
</phpunit>
以上 XML 配置對應于在the section called “命令行選項”描述過的 TextUI 測試執(zhí)行器的默認行為。
其他那些不能用命令行選項來配置的選項有:
convertErrorsToExceptions
默認情況下,PHPUnit 將會安插一個錯誤處理函數(shù)來將以下錯誤轉(zhuǎn)換為異常:
E_WARNING
E_NOTICE
E_USER_ERROR
E_USER_WARNING
E_USER_NOTICE
E_STRICT
E_RECOVERABLE_ERROR
E_DEPRECATED
E_USER_DEPRECATED
將 convertErrorsToExceptions
設為 false
可以禁用此功能。
convertNoticesToExceptions
此選項設置為 false
時,由 convertErrorsToExceptions
安插的錯誤處理函數(shù)不會將 E_NOTICE
、E_USER_NOTICE
、E_STRICT
錯誤轉(zhuǎn)換為異常。
convertWarningsToExceptions
此選項設置為 false
時,由 convertErrorsToExceptions
安插的錯誤處理函數(shù)不會將 E_WARNING
或 E_USER_WARNING
錯誤轉(zhuǎn)換為異常。
forceCoversAnnotation
只記錄使用了 @covers
標注(文檔參見the section called “@covers”)的測試的代碼覆蓋率。
timeoutForLargeTests
如果實行了基于測試規(guī)模的時間限制,那么此屬性為所有標記為 @large
的測試設定超時限制。在配置的時間限制內(nèi)未執(zhí)行完畢的測試將視為失敗。
timeoutForMediumTests
如果實行了基于測試規(guī)模的時間限制,那么此屬性為所有標記為 @medium
的測試設定超時限制。在配置的時間限制內(nèi)未執(zhí)行完畢的測試將視為失敗。
timeoutForSmallTests
如果實行了基于測試規(guī)模的時間限制,那么此屬性為所有未標記為 @medium
或 @large
的測試設定超時限制。在配置的時間限制內(nèi)未執(zhí)行完畢的測試將視為失敗。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: