Skip to content

Commit

Permalink
change file suffix from "TestCase" to "Test" because of PHPUnit's new…
Browse files Browse the repository at this point in the history
… "helpful" behaviour (sebastianbergmann/phpunit#5132)
  • Loading branch information
codemasher committed Oct 23, 2023
1 parent 0892af3 commit 232a674
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Expand Up @@ -16,7 +16,7 @@
use function class_exists;
use function defined;

class RequestFactoryTestCase extends TestCase
class RequestFactoryTest extends TestCase
{

protected RequestFactoryInterface $requestFactory;
Expand Down
Expand Up @@ -15,7 +15,7 @@
use function class_exists;
use function defined;

class ResponseFactoryTestCase extends TestCase
class ResponseFactoryTest extends TestCase
{

protected ResponseFactoryInterface $responseFactory;
Expand Down
Expand Up @@ -19,7 +19,7 @@
use function defined;
use const UPLOAD_ERR_OK;

class ServerRequestFactoryTestCase extends TestCase
class ServerRequestFactoryTest extends TestCase
{

protected ServerRequestFactoryInterface $serverRequestFactory;
Expand Down
Expand Up @@ -30,7 +30,7 @@
use const SEEK_END;
use const SEEK_SET;

class StreamFactoryTestCase extends TestCase
class StreamFactoryTest extends TestCase
{

protected StreamFactoryInterface $streamFactory;
Expand Down
Expand Up @@ -18,7 +18,7 @@
use const UPLOAD_ERR_NO_FILE;
use const UPLOAD_ERR_OK;

class UploadedFileFactoryTestCase extends TestCase
class UploadedFileFactoryTest extends TestCase
{

protected UploadedFileFactoryInterface $uploadedFileFactory;
Expand Down
2 changes: 1 addition & 1 deletion test/UriFactoryTestCase.php → test/UriFactoryTest.php
Expand Up @@ -15,7 +15,7 @@
use function class_exists;
use function defined;

class UriFactoryTestCase extends TestCase
class UriFactoryTest extends TestCase
{

protected UriFactoryInterface $uriFactory;
Expand Down

0 comments on commit 232a674

Please sign in to comment.