-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
32 lines (32 loc) · 1.32 KB
/
phpunit.xml
File metadata and controls
32 lines (32 loc) · 1.32 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false"
bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true"
convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false"
stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory>./src/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Lists">
<directory suffix="Test.php">./tests/Lists</directory>
</testsuite>
<testsuite name="Queues">
<directory suffix="Test.php">./tests/Queues</directory>
</testsuite>
<testsuite name="Stacks">
<directory suffix="Test.php">./tests/Stacks</directory>
</testsuite>
<testsuite name="Misc">
<directory suffix="Test.php">./tests/Internal</directory>
</testsuite>
<testsuite name="Grids">
<directory suffix="Test.php">./tests/Grids</directory>
</testsuite>
<testsuite name="Maps">
<directory suffix="Test.php">./tests/Maps</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>