summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/printdatatagswithglobaltags/tst_printdatatagswithglobaltags.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/testlib/selftests/printdatatagswithglobaltags/tst_printdatatagswithglobaltags.cpp')
-rw-r--r--tests/auto/testlib/selftests/printdatatagswithglobaltags/tst_printdatatagswithglobaltags.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/auto/testlib/selftests/printdatatagswithglobaltags/tst_printdatatagswithglobaltags.cpp b/tests/auto/testlib/selftests/printdatatagswithglobaltags/tst_printdatatagswithglobaltags.cpp
index 6b0e61b7cd..53454fc1ac 100644
--- a/tests/auto/testlib/selftests/printdatatagswithglobaltags/tst_printdatatagswithglobaltags.cpp
+++ b/tests/auto/testlib/selftests/printdatatagswithglobaltags/tst_printdatatagswithglobaltags.cpp
@@ -42,7 +42,7 @@
#include <QtTest/QtTest>
-class tst_MyTestCase: public QObject
+class tst_PrintDataTagsWithGlobalTags: public QObject
{
Q_OBJECT
private slots:
@@ -58,7 +58,7 @@ private slots:
void c() const;
};
-void tst_MyTestCase::initTestCase_data() const
+void tst_PrintDataTagsWithGlobalTags::initTestCase_data() const
{
QTest::addColumn<int>("f");
QTest::addColumn<int>("g");
@@ -67,11 +67,11 @@ void tst_MyTestCase::initTestCase_data() const
QTest::newRow("global data tag 2") << 1 << 2;
}
-void tst_MyTestCase::initTestCase() const
+void tst_PrintDataTagsWithGlobalTags::initTestCase() const
{
}
-void tst_MyTestCase::a_data() const
+void tst_PrintDataTagsWithGlobalTags::a_data() const
{
QTest::addColumn<int>("x");
QTest::addColumn<int>("y");
@@ -80,15 +80,15 @@ void tst_MyTestCase::a_data() const
QTest::newRow("data tag a2") << 1 << 2;
}
-void tst_MyTestCase::a() const
+void tst_PrintDataTagsWithGlobalTags::a() const
{
}
-void tst_MyTestCase::b() const
+void tst_PrintDataTagsWithGlobalTags::b() const
{
}
-void tst_MyTestCase::c_data() const
+void tst_PrintDataTagsWithGlobalTags::c_data() const
{
QTest::addColumn<int>("x");
@@ -97,10 +97,10 @@ void tst_MyTestCase::c_data() const
QTest::newRow("data tag c3") << 1;
}
-void tst_MyTestCase::c() const
+void tst_PrintDataTagsWithGlobalTags::c() const
{
}
-QTEST_MAIN(tst_MyTestCase)
+QTEST_MAIN(tst_PrintDataTagsWithGlobalTags)
#include "tst_printdatatagswithglobaltags.moc"