-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpmetro.xml
37 lines (31 loc) · 1.13 KB
/
phpmetro.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
<?xml version="1.0" encoding="UTF-8"?>
<!-- PHPMetro by Facundo Subiabre
This file is a configuration template.
PLEASE REVIEW AND EDIT THIS FILE BEFORE RUNNING PHPMETRO
http://gitlab.com/subiabre/phpmetro#configuration
-->
<phpmetro verbose="true">
<!--
Suites are Analysis groups that contain similar analyses
You can add as many suites as you want inside the <suites> tag
-->
<suites>
<!--
Each <suite> tag needs to have a name attribute to be distinguished
Optionally you can specify a suffix for the suite files (defaults to "Analysis.php")
Optionally you can flag them with ignore="true" to skip them from running (defaults to "false")
-->
<suite
name="My Test Suite"
suffix="*.php"
ignore="true"
>
<!--
You need to specify the common namespace for this suite
You need to specify the suite files directory
-->
<namespace>MyApp\Tests</namespace>
<directory>tests</directory>
</suite>
</suites>
</phpmetro>