This repository has been archived by the owner on Jan 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
32 lines (32 loc) · 1.49 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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="Filehosting testsuite">
<file>tests/Entity/FileEntityTest.php</file>
<file>tests/Entity/CommentEntityTest.php</file>
<file>tests/Entity/TreeNodeTest.php</file>
<file>tests/Validation/ValidationTest.php</file>
<file>tests/Helper/AuthHelperTest.php</file>
<file>tests/Helper/CookieHelperTest.php</file>
<file>tests/Helper/IdHelperTest.php</file>
<file>tests/Helper/LanguageHelperTest.php</file>
<file>tests/Helper/LinkHelperTest.php</file>
<file>tests/Helper/PaginationHelperTest.php</file>
<file>tests/Helper/UtilsTest.php</file>
<file>tests/Middleware/CsrfMiddlewareTest.php</file>
<file>tests/Middleware/LocaleMiddlewareTest.php</file>
<file>tests/ConfigTest.php</file>
<file>tests/TranslatorTest.php</file>
<!--<file>tests/Database/CommentsInteractionTests.php</file>!-->
<!--<file>tests/Helper/CommentHelperTest.php</file>!-->
<!--<file>tests/Helper/CommentAdditionTest.php</file>!-->
</testsuite>
</testsuites>
</phpunit>