-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (24 loc) · 791 Bytes
/
phpunit.xml
File metadata and controls
24 lines (24 loc) · 791 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ This file is part of the arhitector/transcoder library.
~
~ For the full copyright and license information, please view the LICENSE
~ file that was distributed with this source code.
~
~ @author Dmitry Arhitector <dmitry.arhitector@yandex.ru>
~
~ @license http://opensource.org/licenses/MIT MIT
~ @copyright Copyright (c) 2017 Dmitry Arhitector <dmitry.arhitector@yandex.ru>
-->
<phpunit colors="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Arhitector\Transcoder test">
<directory>tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</phpunit>