Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
64aac67
PHP 8.0, 8.1, PHPUnit 9 support
27pchrisl Oct 11, 2021
5963c8c
Replace key-fixture in CloudFront-tests with generated keys
Zombaya May 17, 2022
73595b3
Additional changes to unittest for phpunit9-compatibility
Zombaya Mar 16, 2022
69e7187
Fix problems with non-fully-reset environment-variables after test
Zombaya Mar 18, 2022
22c3c77
Add changelog document
Zombaya Mar 18, 2022
3fa4d92
Small rewrites of unittests because of deprecation-warnings in phpuni…
Zombaya May 11, 2022
82715b9
Remove warnings from usage of arguments of wrong type in php 8.1
Zombaya May 11, 2022
bebfcc7
Solve failing unittest CloudFront\SignerTest::testBadPrivateKeyPath()
Zombaya Jun 7, 2022
eccd896
switch to double pipe
stobrien89 Jun 9, 2022
863a65a
Formatting fixes
Zombaya Jun 13, 2022
bce4721
Additional methods added to PHPUnitCompatibilitityTraits
Zombaya Jun 27, 2022
8f4b64e
PHP 8.0, 8.1, PHPUnit 9 support
27pchrisl Oct 11, 2021
1c4109d
Replace key-fixture in CloudFront-tests with generated keys
Zombaya May 17, 2022
7dd0db1
Additional changes to unittest for phpunit9-compatibility
Zombaya Mar 16, 2022
a129990
Fix problems with non-fully-reset environment-variables after test
Zombaya Mar 18, 2022
22374fc
Add changelog document
Zombaya Mar 18, 2022
991312f
Small rewrites of unittests because of deprecation-warnings in phpuni…
Zombaya May 11, 2022
a57b51f
Remove warnings from usage of arguments of wrong type in php 8.1
Zombaya May 11, 2022
f07ec26
Solve failing unittest CloudFront\SignerTest::testBadPrivateKeyPath()
Zombaya Jun 7, 2022
d6474a8
switch to double pipe
stobrien89 Jun 9, 2022
c2def67
Formatting fixes
Zombaya Jun 13, 2022
c6f3be2
Additional methods added to PHPUnitCompatibilitityTraits
Zombaya Jun 27, 2022
71f3ec5
fix conflicts/warnings
Jul 19, 2022
b7b6f7e
update tests
Jul 21, 2022
f49a0ef
refactor jsonbody getcontenttype
Jul 21, 2022
ceb60cc
add compattrait to endpointparametermiddlewaretest
Aug 4, 2022
7ce24b4
add compattrait to endpointparametermiddlewaretest
Aug 4, 2022
6d1e8aa
add update to instanceprofileprovider
Aug 4, 2022
e98701e
Merge branch 'master' into phpcompatibilityChecker
stobrien89 Aug 4, 2022
9634dfa
Replace PHPUnitCompatTrait with packages yoast/phpunit-polyfills and …
Zombaya Aug 11, 2022
661ac2f
Replace $this->expectNotToPerformAssertions() with $this->addToAssert…
Zombaya Aug 11, 2022
4c34478
Merge remote-tracking branch 'upstream/master' into phpcompatibilityC…
Zombaya Sep 2, 2022
e67a48e
fix spacing
stobrien89 Sep 12, 2022
06e01bf
Fix spacing
stobrien89 Sep 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add compattrait to endpointparametermiddlewaretest
  • Loading branch information
Sean O'Brien committed Aug 4, 2022
commit ceb60ccdf4e08f8e5e50be4705e2f94c313ced9f
2 changes: 2 additions & 0 deletions tests/EndpointParameterMiddlewareTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use Aws\EndpointParameterMiddleware;
use Aws\HandlerList;
use Aws\Api\Service;
use Aws\Test\Polyfill\PHPUnit\PHPUnitCompatTrait;
use GuzzleHttp\Psr7\Request;
use PHPUnit\Framework\TestCase;

Expand All @@ -13,6 +14,7 @@
*/
class EndpointParameterMiddlewareTest extends TestCase
{
use PHPUnitCompatTrait

public function testThrowsExceptionForMissingParameter()
{
Expand Down