summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJonathan Liu <net147@gmail.com>2011-11-07 20:40:13 +1100
committerQt by Nokia <qt-info@nokia.com>2012-02-20 11:38:57 +0100
commitb35de91c05f67da3b22f9f5b0d69530bb79b8797 (patch)
treed83eca78523fe4c26337411a34b1a6e2e565a555 /tests
parentbad8ed60958f476329e39c4a90575e786364cac8 (diff)
downloadqtactiveqt-b35de91c05f67da3b22f9f5b0d69530bb79b8797.tar.gz
ActiveQt: Add support for setting properties by reference
Add support for setting properties by reference to allow properties that can only be set by reference to be changed. Change-Id: I2f39f8720ecd1ba97139ab42756d686db2211cad Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/auto.pro3
-rw-r--r--tests/auto/qaxobject/qaxobject.pro3
-rw-r--r--tests/auto/qaxobject/tst_qaxobject.cpp77
-rw-r--r--tests/tests.pro2
4 files changed, 85 insertions, 0 deletions
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro
new file mode 100644
index 0000000..8e3a63f
--- /dev/null
+++ b/tests/auto/auto.pro
@@ -0,0 +1,3 @@
+TEMPLATE = subdirs
+SUBDIRS += \
+ qaxobject
diff --git a/tests/auto/qaxobject/qaxobject.pro b/tests/auto/qaxobject/qaxobject.pro
new file mode 100644
index 0000000..7e0fd69
--- /dev/null
+++ b/tests/auto/qaxobject/qaxobject.pro
@@ -0,0 +1,3 @@
+CONFIG += testcase qaxcontainer
+QT += testlib
+SOURCES += tst_qaxobject.cpp
diff --git a/tests/auto/qaxobject/tst_qaxobject.cpp b/tests/auto/qaxobject/tst_qaxobject.cpp
new file mode 100644
index 0000000..d0ad298
--- /dev/null
+++ b/tests/auto/qaxobject/tst_qaxobject.cpp
@@ -0,0 +1,77 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+
+#include <QtTest/QtTest>
+#include <QAxObject>
+#include <QByteArray>
+
+class tst_QAxObject : public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void propertyByRefWritable();
+ void setPropertyByRef();
+};
+
+void tst_QAxObject::propertyByRefWritable()
+{
+ const QAxObject speak("SAPI.SPVoice");
+ const QMetaObject *metaObject = speak.metaObject();
+
+ for (int i = 0; i < metaObject->propertyCount(); ++i) {
+ if (qstrcmp(metaObject->property(i).name(), "Voice") == 0) {
+ QVERIFY(metaObject->property(i).isWritable());
+ break;
+ }
+ }
+}
+
+void tst_QAxObject::setPropertyByRef()
+{
+ QAxObject speak("SAPI.SPVoice");
+
+ QVERIFY(speak.setProperty("Voice", speak.property("Voice")));
+}
+
+QTEST_MAIN(tst_QAxObject)
+#include "tst_qaxobject.moc"
diff --git a/tests/tests.pro b/tests/tests.pro
new file mode 100644
index 0000000..157ef34
--- /dev/null
+++ b/tests/tests.pro
@@ -0,0 +1,2 @@
+TEMPLATE = subdirs
+SUBDIRS += auto