Skip to content

Commit

Permalink
tests renamed method
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Apr 4, 2023
1 parent c9b4cde commit 1e75726
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ private Q_SLOTS:
void hasTable() const;

/* Blueprint commands */
void createTable_Comment() const;
void modifyTable_Comment() const;
void createTable_WithComment() const;
void modifyTable_WithComment() const;

// NOLINTNEXTLINE(readability-redundant-access-specifiers)
private:
Expand Down Expand Up @@ -268,7 +268,7 @@ void tst_SchemaBuilder::hasTable() const

/* Blueprint commands */

void tst_SchemaBuilder::createTable_Comment() const
void tst_SchemaBuilder::createTable_WithComment() const
{
QFETCH_GLOBAL(QString, connection);

Expand Down Expand Up @@ -300,7 +300,7 @@ void tst_SchemaBuilder::createTable_Comment() const
QVERIFY(!Schema::on(connection).hasTable(Firewalls));
}

void tst_SchemaBuilder::modifyTable_Comment() const
void tst_SchemaBuilder::modifyTable_WithComment() const
{
QFETCH_GLOBAL(QString, connection);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ private Q_SLOTS:
void createTable() const;
void createTable_Temporary() const;
void createTable_Charset_Collation_Engine() const;
void createTable_Comment() const;
void createTable_WithComment() const;

void timestamps_rememberToken_softDeletes_CreateAndDrop() const;
void datetimes_softDeletesDatetime_CreateAndDrop() const;

void modifyTable() const;
void modifyTable_Comment() const;
void modifyTable_WithComment() const;

void dropTable() const;
void dropTableIfExists() const;
Expand Down Expand Up @@ -438,7 +438,7 @@ void tst_MySql_SchemaBuilder::createTable_Charset_Collation_Engine() const
QVERIFY(firstLog.boundValues.isEmpty());
}

void tst_MySql_SchemaBuilder::createTable_Comment() const
void tst_MySql_SchemaBuilder::createTable_WithComment() const
{
auto log = DB::connection(m_connection).pretend([](auto &connection)
{
Expand Down Expand Up @@ -696,7 +696,7 @@ void tst_MySql_SchemaBuilder::modifyTable() const
QVERIFY(log5.boundValues.isEmpty());
}

void tst_MySql_SchemaBuilder::modifyTable_Comment() const
void tst_MySql_SchemaBuilder::modifyTable_WithComment() const
{
auto log = DB::connection(m_connection).pretend([](auto &connection)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ private Q_SLOTS:
void createTable() const;
void createTable_Temporary() const;
void createTable_Charset_Collation_Engine() const;
void createTable_Comment() const;
void createTable_WithComment() const;

void timestamps_rememberToken_softDeletes_CreateAndDrop() const;
void datetimes_softDeletesDatetime_CreateAndDrop() const;

void modifyTable() const;
void modifyTable_Comment() const;
void modifyTable_WithComment() const;

void dropTable() const;
void dropTableIfExists() const;
Expand Down Expand Up @@ -386,7 +386,7 @@ void tst_PostgreSQL_SchemaBuilder::createTable_Charset_Collation_Engine() const
QVERIFY(firstLog.boundValues.isEmpty());
}

void tst_PostgreSQL_SchemaBuilder::createTable_Comment() const
void tst_PostgreSQL_SchemaBuilder::createTable_WithComment() const
{
auto log = DB::connection(m_connection).pretend([](auto &connection)
{
Expand Down Expand Up @@ -625,7 +625,7 @@ void tst_PostgreSQL_SchemaBuilder::modifyTable() const
QVERIFY(log5.boundValues.isEmpty());
}

void tst_PostgreSQL_SchemaBuilder::modifyTable_Comment() const
void tst_PostgreSQL_SchemaBuilder::modifyTable_WithComment() const
{
auto log = DB::connection(m_connection).pretend([](auto &connection)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private Q_SLOTS:
void datetimes_softDeletesDatetime_CreateAndDrop() const;

void modifyTable() const;
void modifyTable_Comment() const;
void modifyTable_WithComment() const;

void dropTable() const;
void dropTableIfExists() const;
Expand Down Expand Up @@ -576,7 +576,7 @@ void tst_SQLite_SchemaBuilder::modifyTable() const
QVERIFY(log18.boundValues.isEmpty());
}

void tst_SQLite_SchemaBuilder::modifyTable_Comment() const
void tst_SQLite_SchemaBuilder::modifyTable_WithComment() const
{
auto log = DB::connection(m_connection).pretend([](auto &connection)
{
Expand Down

0 comments on commit 1e75726

Please sign in to comment.