-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpunit.xml
53 lines (53 loc) · 1.82 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
beStrictAboutOutputDuringTests="false"
timeoutForSmallTests="2"
timeoutForMediumTests="15"
timeoutForLargeTests="90"
failOnRisky="true"
enforceTimeLimit="false"
defaultTimeLimit="2"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./src/Samsara/Fermat</directory>
</include>
<report>
<clover outputFile="build/logs/coverage.clover"/>
</report>
</coverage>
<logging>
<junit outputFile="build/logs/junit.xml"/>
<testdoxHtml outputFile="build/logs/testdox.html"/>
</logging>
<testsuites>
<testsuite name="Core">
<directory suffix=".php">./tests/Samsara/Fermat/Core</directory>
</testsuite>
<testsuite name="Coordinates">
<directory suffix=".php">./tests/Samsara/Fermat/Coordinates</directory>
</testsuite>
<testsuite name="Complex">
<directory suffix=".php">./tests/Samsara/Fermat/Complex</directory>
</testsuite>
<testsuite name="Expressions">
<directory suffix=".php">./tests/Samsara/Fermat/Expressions</directory>
</testsuite>
<testsuite name="LinearAlgebra">
<directory suffix=".php">./tests/Samsara/Fermat/LinearAlgebra</directory>
</testsuite>
<testsuite name="Stats">
<directory suffix=".php">./tests/Samsara/Fermat/Stats</directory>
</testsuite>
</testsuites>
</phpunit>