-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
33 lines (31 loc) · 1.21 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="vendor/autoload.php"
backupGlobals="false"
colors="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
cacheResult="false"
testdox="false"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="PHP Coding Challenge: YouTube Video Search">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<php>
<server name="REQUEST_SCHEME" value="https"/>
<server name="HTTP_HOST" value="httpbin.org"/>
<server name="REQUEST_URI" value="get"/>
<const name="BASE_DIR" value="."/>
</php>
</phpunit>