summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPeter Varga <pvarga@inf.u-szeged.hu>2016-11-11 11:28:01 +0100
committerPeter Varga <pvarga@inf.u-szeged.hu>2016-11-15 23:03:16 +0000
commit16427ada1efe57f14d8c99ae18aafefcec27ce25 (patch)
treec14fe7a25923cb84f24153f25edb9902b748ba61 /tests
parent21a40af00a85fad03201131426087ec90745b9aa (diff)
Rename class of tst_QWebEngineAccessibility widget auto test
Change-Id: I042e1be6f0c29b8dc8e5e409e5ecff71a58d0c64 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/widgets/qwebengineaccessibility/tst_qwebengineaccessibility.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/auto/widgets/qwebengineaccessibility/tst_qwebengineaccessibility.cpp b/tests/auto/widgets/qwebengineaccessibility/tst_qwebengineaccessibility.cpp
index 63ca25396..3ed4bcc71 100644
--- a/tests/auto/widgets/qwebengineaccessibility/tst_qwebengineaccessibility.cpp
+++ b/tests/auto/widgets/qwebengineaccessibility/tst_qwebengineaccessibility.cpp
@@ -25,7 +25,7 @@
#include <qwebenginepage.h>
#include <qwidget.h>
-class tst_QWebEngineView : public QObject
+class tst_QWebEngineAccessibility : public QObject
{
Q_OBJECT
@@ -44,27 +44,27 @@ private Q_SLOTS:
// This will be called before the first test function is executed.
// It is only called once.
-void tst_QWebEngineView::initTestCase()
+void tst_QWebEngineAccessibility::initTestCase()
{
}
// This will be called after the last test function is executed.
// It is only called once.
-void tst_QWebEngineView::cleanupTestCase()
+void tst_QWebEngineAccessibility::cleanupTestCase()
{
}
// This will be called before each test function is executed.
-void tst_QWebEngineView::init()
+void tst_QWebEngineAccessibility::init()
{
}
// This will be called after every test function.
-void tst_QWebEngineView::cleanup()
+void tst_QWebEngineAccessibility::cleanup()
{
}
-void tst_QWebEngineView::noPage()
+void tst_QWebEngineAccessibility::noPage()
{
QWebEngineView webView;
webView.show();
@@ -80,7 +80,7 @@ void tst_QWebEngineView::noPage()
QCOMPARE(document->childCount(), 0);
}
-void tst_QWebEngineView::hierarchy()
+void tst_QWebEngineAccessibility::hierarchy()
{
QWebEngineView webView;
webView.setHtml("<html><body>" \
@@ -139,7 +139,7 @@ void tst_QWebEngineView::hierarchy()
QCOMPARE(input, child);
}
-void tst_QWebEngineView::text()
+void tst_QWebEngineAccessibility::text()
{
QWebEngineView webView;
webView.setHtml("<html><body>" \
@@ -207,7 +207,7 @@ void tst_QWebEngineView::text()
QCOMPARE(input3->text(QAccessible::Value), QStringLiteral("Good day!"));
}
-void tst_QWebEngineView::value()
+void tst_QWebEngineAccessibility::value()
{
QWebEngineView webView;
webView.setHtml("<html><body>" \
@@ -248,5 +248,5 @@ void tst_QWebEngineView::value()
static QByteArrayList params = QByteArrayList()
<< "--force-renderer-accessibility";
-W_QTEST_MAIN(tst_QWebEngineView, params)
+W_QTEST_MAIN(tst_QWebEngineAccessibility, params)
#include "tst_qwebengineaccessibility.moc"