-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·29 lines (24 loc) · 876 Bytes
/
phpunit.xml
File metadata and controls
executable file
·29 lines (24 loc) · 876 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
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap = "src/autoload.php"
colors = "true"
processIsolation = "true">
<testsuites>
<testsuite name="Unit Tests">
<directory>tests/unit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/PureClarity</directory>
</whitelist>
</filter>
<php>
<env name="PURECLARITY_HOST" value="127.0.0.1:1337" />
<env name="PURECLARITY_REGION" value="localhost" />
<env name="PURECLARITY_SCRIPT_URL" value="//localhost:3000/" />
<env name="PURECLARITY_SFTP_HOST" value="127.0.0.1" />
<env name="PURECLARITY_SFTP_PORT" value="2222" />
<env name="PURECLARITY_FEED_HOST" value="127.0.0.1" />
<env name="PURECLARITY_FEED_PORT" value="2223" />
</php>
</phpunit>