Code Location: git://github.com/phpbb/support-toolkit.gitstk/ascraeus
Browse
/
Download File
phpunit.xml.dist
<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="true"
         backupStaticAttributes="true"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="true"
		 strict="true"
		 bootstrap="test/php/bootstrap.php">
    <testsuites>
        <testsuite name="phpBB Support Toolkit Test Suite">
			<directory suffix="_test.php">./test/php/tests/</directory>
        </testsuite>
    </testsuites>

	<filter>
		<backlist>
			<directory suffix=".php">stk/phpBB/</directory>
			<directory suffix=".php">stk/vendor/</directory>
		</backlist>
		<whitelist addUncoveredFilesFromWhitelist="true">
			<directory suffix=".php">stk/</directory>
			<exclude>
				<file>stk/config.php</file>
				<file>stk/index.php</file>
				<file>stk/includes/bootstrap.php</file>
				<file>stk/includes/constants.php</file>
			</exclude>
		</whitelist>
	</filter>

	<!-- Update to match your local environment.
		 Accepts the normal phpBB configuration options. -->
	<php>
		<server name="PHPBB_TEST_DBMS" value="" />
		<server name="PHPBB_TEST_DBHOST" value="" />
		<server name="PHPBB_TEST_DBPORT" value="" />
		<server name="PHPBB_TEST_DBNAME" value="" />
		<server name="PHPBB_TEST_DBUSER" value="" />
		<server name="PHPBB_TEST_DBPASSWD" value="" />
		<server name="PHPBB_TEST_TABLE_PREFIX" value="" />
	</php>
</phpunit>