-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (24 loc) · 899 Bytes
/
phpunit.xml
File metadata and controls
24 lines (24 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8" ?>
<phpunit colors="true" verbose="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="All">
<directory suffix="Test.php">tests/</directory>
</testsuite>
<testsuite name="Overnight">
<file>tests/OvernightWorktimeTest.php</file>
</testsuite>
<testsuite name="Basement">
<file>tests/BasementTest.php</file>
</testsuite>
<testsuite name="Partials">
<file>tests/EarlyMorningTest.php</file>
<file>tests/LateNightTest.php</file>
</testsuite>
<testsuite name="Entities">
<directory suffix="Test.php">tests/Entities</directory>
</testsuite>
<testsuite name="Utilities">
<directory suffix="Test.php">tests/Utilities</directory>
</testsuite>
</testsuites>
</phpunit>