aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@digia.com>2013-04-10 10:15:17 +0200
committerJake Petroules <jake.petroules@petroules.com>2013-04-10 20:44:52 +0200
commit4ae7ba35a23cf4c146f30241a6c0a761b501c857 (patch)
tree9d1bc26cbaa8e6f9dffe41989516ab90e2d41ba0 /tests
parent38b20004e57aabdc62e2dafb192eff426d916f28 (diff)
Place toNSMenu in QtMacExtras namespace
Change-Id: I72393f6ea393c6a808c3c5ba20836cc422a708e9 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/macfunctions/tst_qmacfunctions.mm85
1 files changed, 85 insertions, 0 deletions
diff --git a/tests/auto/macfunctions/tst_qmacfunctions.mm b/tests/auto/macfunctions/tst_qmacfunctions.mm
new file mode 100644
index 0000000..eab6683
--- /dev/null
+++ b/tests/auto/macfunctions/tst_qmacfunctions.mm
@@ -0,0 +1,85 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 froglogic GmbH and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the QtMacExtras module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, 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, Digia gives you certain additional
+** rights. These rights are described in the Digia 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.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <QString>
+#include <QtTest>
+#include <QCoreApplication>
+#include <QtWidgets/QMenu>
+#include <QtWidgets/QMenuBar>
+#include <QtWidgets/QMainWindow>
+#include <qtmacfunctions.h>
+
+#import <AppKit/AppKit.h>
+
+class tst_QtMacFunctions : public QObject
+{
+ Q_OBJECT
+
+public:
+ tst_QtMacFunctions();
+
+private slots:
+ void testQMenuToNSMenu();
+};
+
+tst_QtMacFunctions::tst_QtMacFunctions()
+{
+}
+
+void tst_QtMacFunctions::testQMenuToNSMenu()
+{
+ QMainWindow window;
+ QMenu *qMenu = new QMenu("Menu", &window);
+ QAction *action = new QAction("&Item", &window);
+ qMenu->addAction(action);
+ window.menuBar()->addMenu(qMenu);
+
+ NSMenu *nsMenu = toNSMenu(qMenu);
+ QVERIFY(nsMenu != NULL);
+ QCOMPARE([[nsMenu title] UTF8String], "Menu");
+
+ NSMenuItem *item = [nsMenu itemAtIndex:0];
+ QCOMPARE([[item title] UTF8String], "Item");
+}
+
+QTEST_MAIN(tst_QtMacFunctions)
+
+#include "tst_qtmacfunctions.moc"