forked from knut7/php-graphic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
35 lines (32 loc) · 1.18 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
28
29
30
31
32
33
34
35
<!--
~ KNUT7 K7F (http://framework.artphoweb.com/)
~ KNUT7 K7F (tm) : Rapid Development Framework (http://framework.artphoweb.com/)
~
~ Licensed under The MIT License
~ For full copyright and license information, please see the LICENSE.txt
~ Redistributions of files must retain the above copyright notice.
~
~ @link http://github.com/zebedeu/artphoweb for the canonical source repository
~ @copyright (c) 2015. KNUT7 Software Technologies AO Inc. (http://www.artphoweb.com)
~ @license http://framework.artphoweb.com/license/new-bsd New BSD License
~ @author Marcio Zebedeu - [email protected]
~ @version 1.0.0
-->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Tests Application">
<directory>./tests</directory>
</testsuite>
</testsuites>
<php>
<includePath>.</includePath>
</php>
</phpunit>