Skip to content

Commit 639560d

Browse files
committed
Fix test class names due to incorrect automatic refactoring
1 parent ebeace7 commit 639560d

23 files changed

+23
-23
lines changed

tests/ApiClientAbstractTest.php renamed to tests/ApiClientTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
use PleskX\Api\Client\Exception;
77

8-
class ApiClientAbstractTest extends AbstractTestCase
8+
class ApiClientTest extends AbstractTestCase
99
{
1010
public function testWrongProtocol()
1111
{

tests/CertificateAbstractTest.php renamed to tests/CertificateTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class CertificateAbstractTest extends AbstractTestCase
6+
class CertificateTest extends AbstractTestCase
77
{
88
public function testGenerate()
99
{

tests/CustomerAbstractTest.php renamed to tests/CustomerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use PleskXTest\Utility\KeyLimitChecker;
77
use PleskXTest\Utility\PasswordProvider;
88

9-
class CustomerAbstractTest extends AbstractTestCase
9+
class CustomerTest extends AbstractTestCase
1010
{
1111
private array $customerProperties;
1212

tests/DatabaseServerAbstractTest.php renamed to tests/DatabaseServerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class DatabaseServerAbstractTest extends AbstractTestCase
6+
class DatabaseServerTest extends AbstractTestCase
77
{
88
public function testGetSupportedTypes()
99
{

tests/DatabaseAbstractTest.php renamed to tests/DatabaseTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
use PleskXTest\Utility\PasswordProvider;
77

8-
class DatabaseAbstractTest extends AbstractTestCase
8+
class DatabaseTest extends AbstractTestCase
99
{
1010
/** @var \PleskX\Api\Struct\Webspace\Info */
1111
private static $webspace;

tests/DnsTemplateAbstractTest.php renamed to tests/DnsTemplateTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class DnsTemplateAbstractTest extends AbstractTestCase
6+
class DnsTemplateTest extends AbstractTestCase
77
{
88
private static bool $isDnsSupported;
99

tests/DnsAbstractTest.php renamed to tests/DnsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class DnsAbstractTest extends AbstractTestCase
6+
class DnsTest extends AbstractTestCase
77
{
88
/** @var \PleskX\Api\Struct\Webspace\Info */
99
private static $webspace;

tests/EventLogAbstractTest.php renamed to tests/EventLogTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class EventLogAbstractTest extends AbstractTestCase
6+
class EventLogTest extends AbstractTestCase
77
{
88
public function testGet()
99
{

tests/IpAbstractTest.php renamed to tests/IpTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class IpAbstractTest extends AbstractTestCase
6+
class IpTest extends AbstractTestCase
77
{
88
public function testGet()
99
{

tests/LocaleAbstractTest.php renamed to tests/LocaleTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class LocaleAbstractTest extends AbstractTestCase
6+
class LocaleTest extends AbstractTestCase
77
{
88
public function testGet()
99
{

tests/MailAbstractTest.php renamed to tests/MailTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
use PleskXTest\Utility\PasswordProvider;
77

8-
class MailAbstractTest extends AbstractTestCase
8+
class MailTest extends AbstractTestCase
99
{
1010
/** @var \PleskX\Api\Struct\Webspace\Info */
1111
private static $webspace;

tests/PhpHandlerAbstractTest.php renamed to tests/PhpHandlerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class PhpHandlerAbstractTest extends AbstractTestCase
6+
class PhpHandlerTest extends AbstractTestCase
77
{
88
public function testGet()
99
{

tests/ProtectedDirectoryAbstractTest.php renamed to tests/ProtectedDirectoryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
use PleskXTest\Utility\PasswordProvider;
77

8-
class ProtectedDirectoryAbstractTest extends AbstractTestCase
8+
class ProtectedDirectoryTest extends AbstractTestCase
99
{
1010
/** @var \PleskX\Api\Struct\Webspace\Info */
1111
private static $webspace;

tests/ResellerAbstractTest.php renamed to tests/ResellerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use PleskXTest\Utility\KeyLimitChecker;
77
use PleskXTest\Utility\PasswordProvider;
88

9-
class ResellerAbstractTest extends AbstractTestCase
9+
class ResellerTest extends AbstractTestCase
1010
{
1111
private array $resellerProperties;
1212

tests/SecretKeyAbstractTest.php renamed to tests/SecretKeyTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
use PleskX\Api\Exception;
77

8-
class SecretKeyAbstractTest extends AbstractTestCase
8+
class SecretKeyTest extends AbstractTestCase
99
{
1010
public function testCreate()
1111
{

tests/ServerAbstractTest.php renamed to tests/ServerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class ServerAbstractTest extends AbstractTestCase
6+
class ServerTest extends AbstractTestCase
77
{
88
public function testGetProtos()
99
{

tests/ServicePlanAbstractTest.php renamed to tests/ServicePlanTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class ServicePlanAbstractTest extends AbstractTestCase
6+
class ServicePlanTest extends AbstractTestCase
77
{
88
public function testGet()
99
{

tests/SessionAbstractTest.php renamed to tests/SessionTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class SessionAbstractTest extends AbstractTestCase
6+
class SessionTest extends AbstractTestCase
77
{
88
public function testCreate()
99
{

tests/SiteAliasAbstractTest.php renamed to tests/SiteAliasTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class SiteAliasAbstractTest extends AbstractTestCase
6+
class SiteAliasTest extends AbstractTestCase
77
{
88
/** @var \PleskX\Api\Struct\Webspace\Info */
99
private static $webspace;

tests/SiteAbstractTest.php renamed to tests/SiteTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
use PleskXTest\Utility\KeyLimitChecker;
77

8-
class SiteAbstractTest extends AbstractTestCase
8+
class SiteTest extends AbstractTestCase
99
{
1010
/** @var \PleskX\Api\Struct\Webspace\Info */
1111
private static $webspace;

tests/SubdomainAbstractTest.php renamed to tests/SubdomainTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class SubdomainAbstractTest extends AbstractTestCase
6+
class SubdomainTest extends AbstractTestCase
77
{
88
/** @var \PleskX\Api\Struct\Webspace\Info */
99
private static $webspace;

tests/UiAbstractTest.php renamed to tests/UiTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace PleskXTest;
55

6-
class UiAbstractTest extends AbstractTestCase
6+
class UiTest extends AbstractTestCase
77
{
88
private array $customButtonProperties = [
99
'place' => 'admin',

tests/WebspaceAbstractTest.php renamed to tests/WebspaceTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
use PleskXTest\Utility\PasswordProvider;
77

8-
class WebspaceAbstractTest extends AbstractTestCase
8+
class WebspaceTest extends AbstractTestCase
99
{
1010
public function testGetPermissionDescriptor()
1111
{

0 commit comments

Comments
 (0)