forked from brightcove/PHP-API-Wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
23 lines (23 loc) · 806 Bytes
/
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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.6/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
syntaxCheck="false"
verbose="false">
<testsuites>
<testsuite name="Brightcove Tests">
<directory suffix="Test.php">./test/Brightcove/Test/</directory>
</testsuite>
</testsuites>
</phpunit>