Skip to content

Commit

Permalink
Changed test names to camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHAnderson committed Dec 11, 2021
1 parent 6f97406 commit 67c9612
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ protected function resolveApplicationConfiguration($app)
];
}

public function test_register_custom_doctrine_types_on_multiple_database_connections_with_postgres()
public function testRegisterCustomDoctrineTypesOnMultipleDatabaseConnectionsWithPostgres()
{
if ($this->driver !== 'pgsql') {
$this->markTestSkipped('Test requires a Postgres connection.');
Expand All @@ -45,7 +45,7 @@ public function test_register_custom_doctrine_types_on_multiple_database_connect
);
}

public function test_register_custom_doctrine_types_on_multiple_database_connections_with_mysql()
public function testRegisterCustomDoctrineTypesOnMultipleDatabaseConnectionsWithMysql()
{
if ($this->driver !== 'mysql') {
$this->markTestSkipped('Test requires a MySQL connection.');
Expand All @@ -68,7 +68,7 @@ public function test_register_custom_doctrine_types_on_multiple_database_connect
);
}

public function test_rename_column_with_postgres_and_custom_doctrine_type_in_config()
public function testRenameColumnWithPostgresAndCustomDoctrineTypeInConfig()
{
if ($this->driver !== 'pgsql') {
$this->markTestSkipped('Test requires a Postgres connection.');
Expand All @@ -90,7 +90,7 @@ public function test_rename_column_with_postgres_and_custom_doctrine_type_in_con
$this->assertTrue(Schema::hasColumn('test', 'renamed_column'));
}

public function test_rename_column_with_mysql_and_custom_doctrine_type_in_config()
public function testRenameColumnWithMysqlAndCustomDoctrineTypeInConfig()
{
if ($this->driver !== 'mysql') {
$this->markTestSkipped('Test requires a MySQL connection.');
Expand Down

0 comments on commit 67c9612

Please sign in to comment.