File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 3232 env : DEPENDENCIES="dunglas/symfony-lock:^3"
3333 - php : 7.2
3434 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"
3537
3638 # Latest dev release
3739 - 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