-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathphpunit.xml
47 lines (47 loc) · 1.6 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
46
47
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="vendor/autoload.php"
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnFailure="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
<testsuites>
<testsuite name="Components">
<directory suffix="Test.php">./tests/Components</directory>
</testsuite>
<testsuite name="Console">
<directory suffix="Test.php">./tests/Console</directory>
</testsuite>
<testsuite name="Controllers">
<directory suffix="Test.php">./tests/Controllers</directory>
</testsuite>
<testsuite name="Dashboard">
<directory suffix="Test.php">./tests/Dashboard</directory>
</testsuite>
<testsuite name="Datatables">
<directory suffix="Test.php">./tests/Datatables</directory>
</testsuite>
<testsuite name="Menu">
<directory suffix="Test.php">./tests/Menu</directory>
</testsuite>
<testsuite name="Navbar">
<directory suffix="Test.php">./tests/Navbar</directory>
</testsuite>
<testsuite name="Rules">
<directory suffix="Test.php">./tests/Rules</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
<exclude>
<directory>src/config</directory>
<directory>src/database/migrations</directory>
<directory>src/resources</directory>
</exclude>
</source>
</phpunit>