File tree 3 files changed +34
-0
lines changed
3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 32
32
env : DEPENDENCIES="dunglas/symfony-lock:^3"
33
33
- php : 7.2
34
34
env : DEPENDENCIES="dunglas/symfony-lock:^4"
35
+ - php : 7.2
36
+ env : TEST_COMMAND="./vendor/bin/phpunit" DEPENDENCIES="phpunit/phpunit:^7.5 nyholm/psr7:^1.0"
35
37
36
38
# Latest dev release
37
39
- php : 7.3
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+
3
+ <phpunit bootstrap =" ./vendor/autoload.php"
4
+ colors =" true"
5
+ convertErrorsToExceptions =" true"
6
+ convertNoticesToExceptions =" true"
7
+ convertWarningsToExceptions =" true" >
8
+
9
+ <testsuites >
10
+ <testsuite name =" HTTPlug unit tests" >
11
+ <directory suffix =" Test.php" >./tests</directory >
12
+ </testsuite >
13
+ </testsuites >
14
+ </phpunit >
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ declare (strict_types=1 );
4
+
5
+ namespace tests \Http \Client \Common ;
6
+
7
+ use PHPUnit \Framework \TestCase ;
8
+
9
+ class PluginClientTest extends TestCase
10
+ {
11
+ private $ syncClient ;
12
+ private $ asyncClient ;
13
+
14
+ protected function setUp ()
15
+ {
16
+
17
+ }
18
+ }
You can’t perform that action at this time.
0 commit comments