DesignPatternsPHP/phpunit.xml.dist

18 lines
570 B
Plaintext
Raw Normal View History

2013-05-10 19:51:19 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
2013-05-10 19:51:19 +02:00
<testsuites>
<testsuite name="Design Patterns">
2014-04-16 18:21:18 -03:00
<directory suffix="Test.php">Behavioral</directory>
<directory suffix="Test.php">Creational</directory>
<directory suffix="Test.php">More</directory>
<directory suffix="Test.php">Structural</directory>
2013-05-10 19:51:19 +02:00
</testsuite>
</testsuites>
2014-04-16 18:21:18 -03:00
<filter>
<blacklist>
<directory>./vendor</directory>
</blacklist>
</filter>
2013-05-10 19:51:19 +02:00
</phpunit>