-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
37 lines (37 loc) · 1.11 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
37 lines (37 loc) · 1.11 KB
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"?>
<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>
<testsuite name="course-model-test">
<directory>tests/phpunit/CourseModelTest.php</directory>
</testsuite>
<testsuite name="lesson-test">
<directory>tests/phpunit/LessonContentInfoTest.php</directory>
</testsuite>
<testsuite name="course-test">
<directory>tests/phpunit/CourseTest.php</directory>
</testsuite>
</testsuites>
</phpunit>