Skip to content

Commit

Permalink
tests: correctly name tests after platform, not driver
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Nov 8, 2020
1 parent 5229c0a commit 0c2cd2e
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Tester\Assert;
require_once __DIR__ . '/../../bootstrap.php';


class ConnectionPgsqlTest extends IntegrationTestCase
class ConnectionPostgresTest extends IntegrationTestCase
{
public function testReconnect()
{
Expand Down Expand Up @@ -57,5 +57,5 @@ class ConnectionPgsqlTest extends IntegrationTestCase
}


$test = new ConnectionPgsqlTest();
$test = new ConnectionPostgresTest();
$test->run();
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Tester\Assert;
require_once __DIR__ . '/../../bootstrap.php';


class ConnectionSqlsrvTest extends IntegrationTestCase
class ConnectionSqlServerTest extends IntegrationTestCase
{
public function testReconnect()
{
Expand Down Expand Up @@ -65,5 +65,5 @@ class ConnectionSqlsrvTest extends IntegrationTestCase
}


$test = new ConnectionSqlsrvTest();
$test = new ConnectionSqlServerTest();
$test->run();
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Tester\Assert;
require_once __DIR__ . '/../../bootstrap.php';


class DateTimePostgreTest extends IntegrationTestCase
class DateTimePostgresTest extends IntegrationTestCase
{
public function testWriteStorageSameTZ()
{
Expand Down Expand Up @@ -236,5 +236,5 @@ class DateTimePostgreTest extends IntegrationTestCase
}


$test = new DateTimePostgreTest();
$test = new DateTimePostgresTest();
$test->run();
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Tester\Assert;
require_once __DIR__ . '/../../bootstrap.php';


class DateTimeSqlsrvTest extends IntegrationTestCase
class DateTimeSqlServerTest extends IntegrationTestCase
{
public function testLocal()
{
Expand Down Expand Up @@ -117,5 +117,5 @@ class DateTimeSqlsrvTest extends IntegrationTestCase
}


$test = new DateTimeSqlsrvTest();
$test = new DateTimeSqlServerTest();
$test->run();
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Tester\Assert;
require_once __DIR__ . '/../../bootstrap.php';


class PlatformFormatPostgreTest extends IntegrationTestCase
class PlatformFormatPostgresTest extends IntegrationTestCase
{
public function testDelimite()
{
Expand Down Expand Up @@ -79,5 +79,5 @@ class PlatformFormatPostgreTest extends IntegrationTestCase
}


$test = new PlatformFormatPostgreTest();
$test = new PlatformFormatPostgresTest();
$test->run();
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use Tester\Assert;
require_once __DIR__ . '/../../bootstrap.php';


class PlatformFormatSqlSrvTest extends IntegrationTestCase
class PlatformFormatSqlServerTest extends IntegrationTestCase
{
public function testDelimite()
{
Expand Down Expand Up @@ -65,5 +65,5 @@ class PlatformFormatSqlSrvTest extends IntegrationTestCase
}


$test = new PlatformFormatSqlSrvTest();
$test = new PlatformFormatSqlServerTest();
$test->run();
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Tester\Assert;
require_once __DIR__ . '/../../bootstrap.php';


class PlatformPostgreTest extends IntegrationTestCase
class PlatformPostgresTest extends IntegrationTestCase
{
public function testTables()
{
Expand Down Expand Up @@ -237,5 +237,5 @@ class PlatformPostgreTest extends IntegrationTestCase
}


$test = new PlatformPostgreTest();
$test = new PlatformPostgresTest();
$test->run();
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use Tester\Assert;
require_once __DIR__ . '/../../bootstrap.php';


class TypesPostgreTest extends IntegrationTestCase
class TypesPostgresTest extends IntegrationTestCase
{
public function testRead()
{
Expand Down Expand Up @@ -88,5 +88,5 @@ class TypesPostgreTest extends IntegrationTestCase
}


$test = new TypesPostgreTest();
$test = new TypesPostgresTest();
$test->run();
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use Tester\Assert;
require_once __DIR__ . '/../../bootstrap.php';


class TypesSqlsrvTest extends IntegrationTestCase
class TypesSqlserverTest extends IntegrationTestCase
{
public function testRead()
{
Expand Down Expand Up @@ -105,5 +105,5 @@ class TypesSqlsrvTest extends IntegrationTestCase
}


$test = new TypesSqlsrvTest();
$test = new TypesSqlserverTest();
$test->run();

0 comments on commit 0c2cd2e

Please sign in to comment.