File tree Expand file tree Collapse file tree 2 files changed +33
-7
lines changed
symfony/phpunit-bridge/4.1 Expand file tree Collapse file tree 2 files changed +33
-7
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,6 @@ if (!file_exists(dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-php
6
6
exit (1 );
7
7
}
8
8
9
- if (false === getenv ('SYMFONY_PHPUNIT_VERSION ' )) {
10
- putenv ('SYMFONY_PHPUNIT_VERSION=6.5 ' );
11
- }
12
- if (false === getenv ('SYMFONY_PHPUNIT_REMOVE ' )) {
13
- putenv ('SYMFONY_PHPUNIT_REMOVE= ' );
14
- }
15
9
if (false === getenv ('SYMFONY_PHPUNIT_DIR ' )) {
16
10
putenv ('SYMFONY_PHPUNIT_DIR= ' .__DIR__ .'/.phpunit ' );
17
11
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+
3
+ <!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
4
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/6.5/phpunit.xsd"
6
+ backupGlobals =" false"
7
+ colors =" true"
8
+ bootstrap =" config/bootstrap.php"
9
+ >
10
+ <php >
11
+ <ini name =" error_reporting" value =" -1" />
12
+ <server name =" APP_ENV" value =" test" force =" true" />
13
+ <server name =" SHELL_VERBOSITY" value =" -1" />
14
+ <server name =" SYMFONY_PHPUNIT_REMOVE" value =" " />
15
+ <server name =" SYMFONY_PHPUNIT_VERSION" value =" 6.5" />
16
+ </php >
17
+
18
+ <testsuites >
19
+ <testsuite name =" Project Test Suite" >
20
+ <directory >tests</directory >
21
+ </testsuite >
22
+ </testsuites >
23
+
24
+ <filter >
25
+ <whitelist >
26
+ <directory >src</directory >
27
+ </whitelist >
28
+ </filter >
29
+
30
+ <listeners >
31
+ <listener class =" Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
32
+ </listeners >
33
+ </phpunit >
You can’t perform that action at this time.
0 commit comments