-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathphpunit.xml
More file actions
48 lines (48 loc) · 2.06 KB
/
Copy pathphpunit.xml
File metadata and controls
48 lines (48 loc) · 2.06 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
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./tests/test_tools/phpunit_bootstrap.php" colors="true" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">./tests/unit</directory>
<exclude>./tests/unit/PHPStan</exclude>
<exclude>./tests/unit/Data/DbSpecific</exclude>
</testsuite>
<testsuite name="db-sqlite">
<directory suffix="Test.php">./tests/unit/Data/DbSpecific/Sqlite</directory>
</testsuite>
<testsuite name="db-mysql">
<directory suffix="Test.php">./tests/unit/Data/DbSpecific/Mysql</directory>
</testsuite>
<testsuite name="db-pgsql">
<directory suffix="Test.php">./tests/unit/Data/DbSpecific/Pgsql</directory>
</testsuite>
<testsuite name="db-firebird">
<directory suffix="Test.php">./tests/unit/Data/DbSpecific/Firebird</directory>
</testsuite>
<testsuite name="db-sqlsrv">
<directory suffix="Test.php">./tests/unit/Data/DbSpecific/Mssql</directory>
</testsuite>
<testsuite name="db-oracle">
<directory suffix="Test.php">./tests/unit/Data/DbSpecific/Oracle</directory>
</testsuite>
<testsuite name="db-ibm">
<directory suffix="Test.php">./tests/unit/Data/DbSpecific/Ibm</directory>
</testsuite>
<testsuite name="phpstan">
<directory suffix="Test.php">./tests/unit/PHPStan</directory>
</testsuite>
</testsuites>
<logging>
<testdoxHtml outputFile="./build/tests/index.html"/>
</logging>
<extensions>
<!-- <bootstrap class="Prado\Tests\PradoTestListener"/> -->
</extensions>
<php>
<!-- selenium test cases can take up to 20 mins -->
<ini name="max_execution_time" value="1200"/>
<ini name="memory_limit" value="1G"/>
<const name="PRADO_TEST_RUN" value="true"/>
<!-- indicate Selenium test suite to start/stop Driver - - >
<const name="SELENIUM_TESTSUITE_NAME" value="selenium"/> -->
</php>
</phpunit>