-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
13 lines (13 loc) · 708 Bytes
/
Copy pathphpunit.xml
File metadata and controls
13 lines (13 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Design Patterns in PHP">
<directory suffix="Test.php">GangOfFour/Behavioral/*/*/Tests</directory>
<directory suffix="Test.php">GangOfFour/Creational/*/*/Tests</directory>
<directory suffix="Test.php">GangOfFour/Structural/*/*/Tests</directory>
<directory suffix="Test.php">Other/Behavioral/*/*/Tests</directory>
<directory suffix="Test.php">Other/Creational/*/*/Tests</directory>
<directory suffix="Test.php">Other/Structural/*/*/Tests</directory>
</testsuite>
</testsuites>
</phpunit>