forked from BitLucid/ninjawars
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
45 lines (45 loc) · 2.25 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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="deploy/tests/bootstrap.php" colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" convertErrorsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<file>deploy/tests/integration/DeityTest.php</file>
<directory suffix=".php">deploy/</directory>
</include>
<exclude>
<directory>vendor</directory>
<directory>deploy/vendor</directory>
<directory>deploy/cron</directory>
<directory>deploy/tests/</directory>
<directory>deploy/model/orm</directory>
<directory>deploy/db/migrations/</directory>
<directory>deploy/templates/compiled</directory>
<directory>deploy/www/</directory>
<directory>deploy/conf/</directory>
<file>deploy/check.php</file>
<file>deploy/lib/cleanup.inc.php</file>
<file>deploy/resources.build.php</file>
<file>deploy/lib/events/PutEventCheck.php</file>
</exclude>
</coverage>
<testsuites>
<testsuite name="Unit">
<directory suffix=".php">deploy/tests/unit</directory>
<directory suffix=".php">deploy/lib/events</directory>
<exclude>deploy/lib/events/PutEventCheck.php</exclude>
</testsuite>
<testsuite name="Integration">
<file>deploy/tests/integration/DeityTest.php</file>
<directory suffix=".php">deploy/tests/integration</directory>
</testsuite>
<testsuite name="Quick">
<directory suffix=".php">deploy/tests/unit</directory>
<directory suffix=".php">deploy/lib/events</directory>
<exclude>deploy/lib/events/PutEventCheck.php</exclude>
<file>deploy/tests/integration/controller/HomepageControllerTest.php</file>
<file>deploy/tests/integration/controller/AttackControllerTest.php</file>
<file>deploy/tests/integration/controller/LoginControllerTest.php</file>
<file>deploy/tests/integration/controller/PlayerControllerTest.php</file>
<file>deploy/tests/integration/controller/SignupControllerTest.php</file>
</testsuite>
</testsuites>
</phpunit>