forked from LimeSurvey/LimeSurvey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
25 lines (25 loc) · 859 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
24
25
<phpunit bootstrap="tests/bootstrap.php" stderr="true" >
<testsuites>
<testsuite name="Surveys">
<directory>tests/surveys</directory>
</testsuite>
<testsuite name="Questions">
<directory>tests/questions</directory>
</testsuite>
<testsuite name="Helpers">
<directory>tests/helpers</directory>
</testsuite>
<testsuite name="Models">
<directory>tests/models</directory>
</testsuite>
<testsuite name="Controllers">
<directory>tests/controllers</directory>
</testsuite>
<testsuite name="Unit">
<directory>tests/unit</directory>
</testsuite>
<testsuite name="Acceptance">
<directory>tests/functional/acceptance</directory>
</testsuite>
</testsuites>
</phpunit>