forked from laravel/serializable-closure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
37 lines (37 loc) · 2.02 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="vendor/autoload.php"
colors="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="php73">
<file phpVersion="7.3.0" phpVersionOperator="==">./tests/Php73Test.php</file>
</testsuite>
<testsuite name="php74">
<file phpVersion="7.4.0" phpVersionOperator=">=">./tests/SerializerTest.php</file>
<file phpVersion="7.4.0" phpVersionOperator=">=">./tests/SignedSerializerTest.php</file>
<file phpVersion="7.4.0" phpVersionOperator=">=">./tests/SignedSerializerTest.php</file>
<file phpVersion="7.4.0" phpVersionOperator=">=">./tests/ReflectionClosure1Test.php</file>
<file phpVersion="7.4.0" phpVersionOperator=">=">./tests/ReflectionClosure2Test.php</file>
<file phpVersion="7.4.0" phpVersionOperator=">=">./tests/ReflectionClosure3Test.php</file>
<file phpVersion="7.4.0" phpVersionOperator=">=">./tests/ReflectionClosure4Test.php</file>
<file phpVersion="7.4.0" phpVersionOperator=">=">./tests/ReflectionClosure5Test.php</file>
</testsuite>
<testsuite name="php80">
<file phpVersion="8.0.0-dev" phpVersionOperator=">=">./tests/ReflectionClosurePhp80Test.php</file>
<file phpVersion="8.0.0-dev" phpVersionOperator=">=">./tests/SerializerPhp80Test.php</file>
</testsuite>
<testsuite name="php81">
<file phpVersion="8.1.0-dev" phpVersionOperator=">=">./tests/ReflectionClosurePhp81Test.php</file>
<file phpVersion="8.1.0-dev" phpVersionOperator=">=">./tests/SerializerPhp81Test.php</file>
</testsuite>
</testsuites>
</phpunit>