-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathphpunit.xml
45 lines (45 loc) · 2.54 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/functional/</directory>
<directory>./tests/commands/TestCreateFeedCommand.php</directory>
<directory>./tests/commands/TestCreateFriendRequestCommand.php</directory>
<directory>./tests/commands/TestLoginUserCommand.php</directory>
<directory>./tests/commands/TestLogoutUserCommand.php</directory>
<directory>./tests/commands/TestRegisterUserCommand.php</directory>
<directory>./tests/commands/TestRemoveFriendCommand.php</directory>
<directory>./tests/commands/TestCreateMessageCommand.php</directory>
<directory>./tests/controllers/TestFeedController.php</directory>
<directory>./tests/controllers/TestFriendController.php</directory>
<directory>./tests/controllers/TestFriendRequestController.php</directory>
<directory>./tests/controllers/TestMessageController.php</directory>
<directory>./tests/controllers/TestRegistrationController.php</directory>
<directory>./tests/controllers/TestSessionController.php</directory>
<directory>./tests/controllers/TestUserController.php</directory>
<directory>./tests/events/TestFriendRequestWasSent.php</directory>
<directory>./tests/events/TestUserWasRegistered.php</directory>
<directory>./tests/handlers/TestEmailFriendRequest.php</directory>
<directory>./tests/handlers/TestEmailRegistrationConfirmation.php</directory>
<directory>./tests/repositories/TestFeedRepository.php</directory>
<directory>./tests/repositories/TestFriendRepository.php</directory>
<directory>./tests/repositories/TestUserRepository.php</directory>
<directory>./tests/repositories/TestMessageRepository.php</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="DB_PATH" value="storage/database.sqlite"/>
</php>
</phpunit>