-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
18 lines (18 loc) · 866 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd" backupGlobals="false" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutChangesToGlobalState="true" beStrictAboutOutputDuringTests="true" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="tests/bootstrap.php" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="RESOURCES_DIR" value="testFile/"/>
<env name="BEARER_TOKEN" value="test_test_test"/>
<env name="MECAB" value="/usr/bin/mecab"/>
</php>
<source>
<include>
<directory suffix=".php">./src/</directory>
</include>
</source>
</phpunit>