-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
31 lines (31 loc) · 1.11 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
<phpunit bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Only Active">
<file>./tests/ApiResponseTest.php</file>
<file>./tests/CacheTest.php</file>
<file>./tests/CountriesTest.php</file>
<file>./tests/CryptoKeyTest.php</file>
<file>./tests/CryptoPackageTest.php</file>
<file>./tests/CryptoTest.php</file>
<file>./tests/DatabaseMigrationManagerTest.php</file>
<file>./tests/DatabaseMigrationTest.php</file>
<file>./tests/DatabaseObjectTest.php</file>
<file>./tests/InputValidatorTest.php</file>
<file>./tests/QueryIteratorTest.php</file>
<file>./tests/QueryTest.php</file>
<file>./tests/RegistryTest.php</file>
<file>./tests/RequestTest.php</file>
<file>./tests/ResponseTest.php</file>
<file>./tests/RouterTest.php</file>
<file>./tests/SessionTest.php</file>
<file>./tests/StringsTest.php</file>
<file>./tests/VarsTest.php</file>
<file>./tests/ViewTest.php</file>
</testsuite>
</testsuites>
</phpunit>