-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
28 lines (25 loc) · 735 Bytes
/
phpunit.xml.dist
File metadata and controls
28 lines (25 loc) · 735 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
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="vendor/autoload.php"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
colors="true"
>
<testsuites>
<testsuite name="JWT Authentication Test Suite">
<directory suffix=".php">./tests/src</directory>
</testsuite>
</testsuites>
<php>
<env name="URL" value="http://localhost" />
<env name="USERNAME" value="admin" />
<env name="PASSWORD" value="password" />
</php>
<!-- Filter for coverage reports. -->
<coverage>
<exclude>
<directory>./tests/fixtures</directory>
<directory>./vendor</directory>
</exclude>
</coverage>
</phpunit>