File tree 2 files changed +44
-0
lines changed
2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.5/phpunit.xsd"
4
+ colors =" true"
5
+ backupGlobals =" true"
6
+ stopOnFailure =" false"
7
+ processIsolation =" false"
8
+ backupStaticAttributes =" false"
9
+ bootstrap =" vendor/autoload.php"
10
+ convertErrorsToExceptions =" true"
11
+ convertNoticesToExceptions =" true"
12
+ convertWarningsToExceptions =" true"
13
+ >
14
+ <coverage >
15
+ <include >
16
+ <directory suffix =" .php" >src</directory >
17
+ </include >
18
+ </coverage >
19
+ <testsuites >
20
+ <testsuite name =" unit" >
21
+ <directory suffix =" Test.php" >tests</directory >
22
+ </testsuite >
23
+ </testsuites >
24
+ <php >
25
+ <ini name =" error_reporting" value =" -1" />
26
+ <ini name =" memory_limit" value =" -1" />
27
+ </php >
28
+ </phpunit >
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /**
4
+ * This file is part of FFI package.
5
+ *
6
+ * For the full copyright and license information, please view the LICENSE
7
+ * file that was distributed with this source code.
8
+ */
9
+
10
+ declare (strict_types=1 );
11
+
12
+ namespace FFI \Contracts \Preprocessor \Tests ;
13
+
14
+ use PHPUnit \Framework \TestCase as BaseTestCase ;
15
+
16
+ abstract class TestCase extends BaseTestCase {}
You can’t perform that action at this time.
0 commit comments