This repository has been archived on 2018-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
sleepy/tests/phpunit.xml

30 lines
842 B
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="./Bootstrap.php"
colors="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="Sleepy Core Test Suite">
<directory suffix="Test.php">Core</directory>
<directory suffix="Test.php">Exception</directory>
<directory suffix="Test.php">Type</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>../../sleepy/Sleepy</directory>
<directory>../../sleepy/application</directory>
</whitelist>
<blacklist>
<directory suffix=".php">PEAR_INSTALL_DIR</directory>
<directory suffix=".php">PHP_LIBDIR</directory>
<directory suffix=".php">../vendor</directory>
</blacklist>
</filter>
</phpunit>