-
Notifications
You must be signed in to change notification settings - Fork 20
/
phpunit.xml
27 lines (27 loc) · 1.03 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false"
beStrictAboutTestsThatDoNotTestAnything="false" bootstrap="vendor/autoload.php" colors="true"
processIsolation="false" stopOnFailure="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<php>
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
<env name="META_WEBHOOK_TOKEN" value="23653244"/>
<env name="META_TOKEN" value="7FLZBhGJ1qYHB3mTB"/>
<env name="META_APP_ID" value="3243242451531464"/>
<env name="META_APP_SECRET" value="fv56asdjk9asf"/>
</php>
<coverage />
<testsuites>
<testsuite name="core">
<directory suffix=".php">./tests/</directory>
<exclude>./tests/TestCase.php</exclude>
<exclude>./tests/Fake/</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>