mirror of
https://github.com/Rogiel/star-replay
synced 2025-12-05 22:32:46 +00:00
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Use this configuration file as a template to run the tests against any dbms.
|
|
Procedure:
|
|
1) Save a copy of this file with a name of your choosing. It doesn't matter
|
|
where you place it as long as you know where it is.
|
|
i.e. "mysqlconf.xml" (It needs the ending .xml).
|
|
2) Edit the file and fill in your settings (database name, type, username, etc.)
|
|
Just change the "value"s, not the names of the var elements.
|
|
3) To run the tests against the database type the following from within the
|
|
tests/ folder: phpunit -c <filename> ...
|
|
Example: phpunit -c mysqlconf.xml AllTests
|
|
-->
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
>
|
|
|
|
<testsuites>
|
|
<testsuite name="StarReplay Test Suite">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">/src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
</phpunit> |