forked from themeum/tutor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
28 lines (28 loc) · 802 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
28 lines (28 loc) · 802 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
25
26
27
28
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
testdox="true"
>
<testsuites>
<testsuite name="all-test">
<directory>tests/phpunit/</directory>
</testsuite>
<testsuite name="utils-test">
<directory>tests/phpunit/UtilsTest.php</directory>
</testsuite>
<testsuite name="gradebook-test">
<directory>tests/phpunit/tutor-pro/GradebookTest.php</directory>
</testsuite>
<testsuite name="query-helper-test">
<directory>tests/phpunit/QueryHelperTest.php</directory>
</testsuite>
<testsuite name="flash-message-test">
<directory>tests/phpunit/FlashMessageTest.php</directory>
</testsuite>
</testsuites>
</phpunit>