-
Notifications
You must be signed in to change notification settings - Fork 17
/
phpunit.xml.dist
34 lines (30 loc) · 1.05 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="FreeDSx LDAP Unit Tests">
<directory>./tests/integration</directory>
</testsuite>
</testsuites>
<php>
<env name="LDAP_SERVER" value="example.com"/>
<env name="LDAP_USERNAME" value="cn=admin,dc=example,dc=com"/>
<env name="LDAP_PASSWORD" value="P@ssword12345"/>
<env name="LDAP_BASE_DN" value="ou=FreeDSx-Test,dc=example,dc=com"/>
<env name="LDAP_PORT" value="389"/>
<env name="LDAP_CA_CERT" value=""/>
</php>
</phpunit>