-
Notifications
You must be signed in to change notification settings - Fork 51
/
phpunit.xml
49 lines (41 loc) · 1.29 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
backupGlobals="false"
stopOnError="true"
stopOnFailure="true"
colors="true"
verbose="true">
<!-- used by env console info -->
<php>
<env name="LINES" value="50"/>
<env name="COLUMNS" value="72"/>
</php>
<testsuites>
<testsuite name="All">
<directory suffix="Test.php">tests</directory>
</testsuite>
<testsuite name="Components">
<directory suffix="Test.php">tests/CLIFramework/Component</directory>
</testsuite>
<testsuite name="DemoApp">
<directory suffix="Test.php">tests/DemoApp</directory>
</testsuite>
<testsuite name="TestApp">
<directory suffix="Test.php">tests/TestApp</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
<exclude>
<directory>./src/CLIFramework/Testing</directory>
<directory>./src/PHPBrew</directory>
<directory>./build</directory>
<directory>./composer</directory>
<directory>./tests</directory>
<directory>./travis</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>