Skip to content

Commit 953a1e3

Browse files
committed
Add Abstract suffix to abstract test classes because of deprecations
1 parent 7a5bd96 commit 953a1e3

18 files changed

Lines changed: 19 additions & 19 deletions

tests/Service/AbstractServiceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*
4141
* @testdox The AbstractService class
4242
*/
43-
class AbstractServiceTest extends ServiceTest
43+
class AbstractServiceTest extends ServiceTestAbstract
4444
{
4545
/**
4646
* @testdox can get the response text from the value property

tests/Service/BarcodeServiceRestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
*
5151
* @testdox The BarcodeService (REST)
5252
*/
53-
class BarcodeServiceRestTest extends ServiceTest
53+
class BarcodeServiceRestTest extends ServiceTestAbstract
5454
{
5555
/** @var PostNL */
5656
protected $postnl;

tests/Service/BarcodeServiceSoapTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
*
4646
* @testdox The BarcodeService (SOAP)
4747
*/
48-
class BarcodeServiceSoapTest extends ServiceTest
48+
class BarcodeServiceSoapTest extends ServiceTestAbstract
4949
{
5050
/** @var PostNL */
5151
protected $postnl;

tests/Service/ConfirmingServiceRestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
*
5656
* @testdox The ConfirmingService (REST)
5757
*/
58-
class ConfirmingServiceRestTest extends ServiceTest
58+
class ConfirmingServiceRestTest extends ServiceTestAbstract
5959
{
6060
/** @var PostNL */
6161
protected $postnl;

tests/Service/ConfirmingServiceSoapTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
*
5050
* @testdox The ConfirmingService (SOAP)
5151
*/
52-
class ConfirmingServiceSoapTest extends ServiceTest
52+
class ConfirmingServiceSoapTest extends ServiceTestAbstract
5353
{
5454
/** @var PostNL */
5555
protected $postnl;

tests/Service/DeliveryDateServiceRestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
*
5858
* @testdox The DeliveryDateService (REST)
5959
*/
60-
class DeliveryDateServiceRestTest extends ServiceTest
60+
class DeliveryDateServiceRestTest extends ServiceTestAbstract
6161
{
6262
/** @var PostNL */
6363
protected $postnl;

tests/Service/DeliveryDateServiceSoapTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
*
5454
* @testdox The DeliveryDateService (SOAP)
5555
*/
56-
class DeliveryDateServiceSoapTest extends ServiceTest
56+
class DeliveryDateServiceSoapTest extends ServiceTestAbstract
5757
{
5858
/** @var PostNL */
5959
protected $postnl;

tests/Service/LabellingServiceRestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
*
5959
* @testdox The LabellingService (REST)
6060
*/
61-
class LabellingServiceRestTest extends ServiceTest
61+
class LabellingServiceRestTest extends ServiceTestAbstract
6262
{
6363
/** @var PostNL */
6464
protected $postnl;

tests/Service/LabellingServiceSoapTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
*
5151
* @testdox The LabellingService (SOAP)
5252
*/
53-
class LabellingServiceSoapTest extends ServiceTest
53+
class LabellingServiceSoapTest extends ServiceTestAbstract
5454
{
5555
/** @var PostNL */
5656
protected $postnl;

tests/Service/LocationServiceRestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
*
5959
* @testdox The LocationService (REST)
6060
*/
61-
class LocationServiceRestTest extends ServiceTest
61+
class LocationServiceRestTest extends ServiceTestAbstract
6262
{
6363
/** @var PostNL */
6464
protected $postnl;

0 commit comments

Comments
 (0)