phpunit.xml.dist 1.13 KB
Newer Older
Taufan Aditya committed
1 2 3 4 5 6 7 8 9 10 11 12
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="./tests/unit/bootstrap.php"
		colors="true"
		convertErrorsToExceptions="true"
		convertNoticesToExceptions="true"
		convertWarningsToExceptions="true"
		stopOnFailure="false">
		<testsuites>
			<testsuite name="Yii Test Suite">
				<directory>./tests/unit</directory>
			</testsuite>
		</testsuites>
13
		<filter>
14
			<blacklist>
15 16 17 18 19 20 21 22
				<file>framework/yii/helpers/Json.php</file>
				<file>framework/yii/helpers/StringHelper.php</file>
				<file>framework/yii/helpers/VarDumper.php</file>
				<file>framework/yii/helpers/Html.php</file>
				<file>framework/yii/helpers/Inflector.php</file>
				<file>framework/yii/helpers/FileHelper.php</file>
				<file>framework/yii/helpers/ArrayHelper.php</file>
				<file>framework/yii/helpers/Console.php</file>
23
				<file>framework/yii/i18n/GettextFile.php</file>
24
				<file>framework/yii/web/ResponseFormatterInterface.php</file>
25 26 27 28 29
				<directory suffix="Exception.php">framework/yii/base</directory>
				<directory suffix=".php">framework/yii/db/mssql</directory>
				<directory suffix=".php">framework/yii/bootstrap</directory>
			</blacklist>
		</filter>
Taufan Aditya committed
30
</phpunit>