forked from liuggio/fastest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
22 lines (20 loc) · 1.01 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="Fastest Test Suite">
<directory>tests/Fastest/Process/ProcessesTest.php</directory>
<directory>tests/Fastest/Process/ProcessFactoryTest.php</directory>
<directory>tests/Fastest/Process/ProcessesManagerTest.php</directory>
<directory>tests/Fastest/Process/ProcessorCounterTest.php</directory>
<directory>tests/Fastest/Queue/ReadFromInputAndPushIntoTheQueueTest.php</directory>
<directory>tests/Fastest/Queue/Infrastructure/InMemoryQueueFactoryTest.php</directory>
<directory>tests/Fastest/Queue/Infrastructure/InMemoryQueueTest.php</directory>
<directory>tests/Fastest/Queue/CreateTestsQueueFromPhpUnitXMLTest.php</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>