aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-02-01 14:19:15 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-02-01 14:35:17 -0200
commit4a14c6632f6a4245a20bd46cb94f9d807188276d (patch)
treefbfc1ee183a26610dee726e7c908a7cd97d30ec5 /tests
parent5d456d500f3e142902523df2157bbef1b82bfe1a (diff)
Allow a class to multiple inherit from various object-types.
Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt1
-rw-r--r--tests/testmultipleinheritance.cpp69
-rw-r--r--tests/testmultipleinheritance.h38
3 files changed, 108 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 0a19bd65e..8c3a64b7c 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -16,3 +16,4 @@ declare_test(testconversionruletag)
declare_test(testreverseoperators)
declare_test(testdtorinformation)
declare_test(testremoveimplconv)
+declare_test(testmultipleinheritance)
diff --git a/tests/testmultipleinheritance.cpp b/tests/testmultipleinheritance.cpp
new file mode 100644
index 000000000..5464fc446
--- /dev/null
+++ b/tests/testmultipleinheritance.cpp
@@ -0,0 +1,69 @@
+/*
+* This file is part of the API Extractor project.
+*
+* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+*
+* Contact: PySide team <contact@pyside.org>
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public License
+* version 2 as published by the Free Software Foundation.
+*
+* This program is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA
+*
+*/
+
+#include "testmultipleinheritance.h"
+#include <QtTest/QTest>
+#include "testutil.h"
+
+void TestMultipleInheritance::testVirtualClass()
+{
+ const char* cppCode ="\
+ struct A {\
+ virtual ~A();\
+ virtual void theBug();\
+ };\
+ struct B {\
+ virtual ~B();\
+ };\
+ struct C : A, B {\
+ };\
+ struct D : C {\
+ };\
+ ";
+ const char* xmlCode = "\
+ <typesystem package=\"Foo\"> \
+ <object-type name='A' /> \
+ <object-type name='B' /> \
+ <object-type name='C' /> \
+ <object-type name='D' /> \
+ </typesystem>";
+
+ TestUtil t(cppCode, xmlCode);
+ AbstractMetaClassList classes = t.builder()->classes();
+ QCOMPARE(classes.count(), 4);
+
+ AbstractMetaClass* classD = classes.findClass("D");
+ bool functionFound = false;
+ foreach (AbstractMetaFunction* f, classD->functions()) {
+ if (f->name() == "theBug") {
+ functionFound = true;
+ break;
+ }
+ }
+ QVERIFY(functionFound);
+
+}
+
+QTEST_APPLESS_MAIN(TestMultipleInheritance)
+
+#include "testmultipleinheritance.moc"
diff --git a/tests/testmultipleinheritance.h b/tests/testmultipleinheritance.h
new file mode 100644
index 000000000..3a1bd388d
--- /dev/null
+++ b/tests/testmultipleinheritance.h
@@ -0,0 +1,38 @@
+/*
+* This file is part of the API Extractor project.
+*
+* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+*
+* Contact: PySide team <contact@pyside.org>
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public License
+* version 2 as published by the Free Software Foundation.
+*
+* This program is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA
+*
+*/
+
+#ifndef TESTMULTIPLEINHERITANCE_H
+#define TESTMULTIPLEINHERITANCE_H
+
+#include <QObject>
+
+class AbstractMetaBuilder;
+
+class TestMultipleInheritance : public QObject
+{
+ Q_OBJECT
+ private slots:
+ void testVirtualClass();
+};
+
+#endif