Skip to content

Commit

Permalink
Add Abstract suffix to abstract test classes because of deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
firstred committed Nov 29, 2024
1 parent 7a5bd96 commit 953a1e3
Show file tree
Hide file tree
Showing 18 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion tests/Service/AbstractServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
*
* @testdox The AbstractService class
*/
class AbstractServiceTest extends ServiceTest
class AbstractServiceTest extends ServiceTestAbstract
{
/**
* @testdox can get the response text from the value property
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/BarcodeServiceRestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*
* @testdox The BarcodeService (REST)
*/
class BarcodeServiceRestTest extends ServiceTest
class BarcodeServiceRestTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/BarcodeServiceSoapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
*
* @testdox The BarcodeService (SOAP)
*/
class BarcodeServiceSoapTest extends ServiceTest
class BarcodeServiceSoapTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/ConfirmingServiceRestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
*
* @testdox The ConfirmingService (REST)
*/
class ConfirmingServiceRestTest extends ServiceTest
class ConfirmingServiceRestTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/ConfirmingServiceSoapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
*
* @testdox The ConfirmingService (SOAP)
*/
class ConfirmingServiceSoapTest extends ServiceTest
class ConfirmingServiceSoapTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/DeliveryDateServiceRestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
*
* @testdox The DeliveryDateService (REST)
*/
class DeliveryDateServiceRestTest extends ServiceTest
class DeliveryDateServiceRestTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/DeliveryDateServiceSoapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
*
* @testdox The DeliveryDateService (SOAP)
*/
class DeliveryDateServiceSoapTest extends ServiceTest
class DeliveryDateServiceSoapTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/LabellingServiceRestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
*
* @testdox The LabellingService (REST)
*/
class LabellingServiceRestTest extends ServiceTest
class LabellingServiceRestTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/LabellingServiceSoapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*
* @testdox The LabellingService (SOAP)
*/
class LabellingServiceSoapTest extends ServiceTest
class LabellingServiceSoapTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/LocationServiceRestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
*
* @testdox The LocationService (REST)
*/
class LocationServiceRestTest extends ServiceTest
class LocationServiceRestTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/LocationServiceSoapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
*
* @testdox The LocationService (SOAP)
*/
class LocationServiceSoapTest extends ServiceTest
class LocationServiceSoapTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
use function is_object;

/**
* Abstract class AbstractServiceTest.
* Abstract class ServiceTestAbstract.
*
* @testdox The AbstractService class
*/
abstract class ServiceTest extends TestCase
abstract class ServiceTestAbstract extends TestCase
{
public static function containsStdClass($value)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/ShippingServiceRestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*
* @testdox The ShippingService (REST)
*/
class ShippingServiceRestTest extends ServiceTest
class ShippingServiceRestTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/ShippingServiceSoapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*
* @testdox The ShippingService (SOAP)
*/
class ShippingServiceSoapTest extends ServiceTest
class ShippingServiceSoapTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/ShippingStatusServiceRestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
*
* @testdox The ShippingStatusService (REST)
*/
class ShippingStatusServiceRestTest extends ServiceTest
class ShippingStatusServiceRestTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/ShippingStatusServiceSoapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
*
* @testdox The ShippingStatusService (SOAP)
*/
class ShippingStatusServiceSoapTest extends ServiceTest
class ShippingStatusServiceSoapTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/TimeframeServiceRestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
*
* @testdox The TimeframeService (REST)
*/
class TimeframeServiceRestTest extends ServiceTest
class TimeframeServiceRestTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/TimeframeServiceSoapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*
* @testdox The TimeframeService (SOAP)
*/
class TimeframeServiceSoapTest extends ServiceTest
class TimeframeServiceSoapTest extends ServiceTestAbstract
{
/** @var PostNL */
protected $postnl;
Expand Down

0 comments on commit 953a1e3

Please sign in to comment.