From fc170a368630a90a74fea796aa20f8f2c7fe7cc5 Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Mon, 22 Nov 2010 19:09:00 -0300 Subject: Added unit test to field removal. --- tests/CMakeLists.txt | 1 + tests/testremovefield.cpp | 56 +++++++++++++++++++++++++++++++++++++++++++++++ tests/testremovefield.h | 36 ++++++++++++++++++++++++++++++ 3 files changed, 93 insertions(+) create mode 100644 tests/testremovefield.cpp create mode 100644 tests/testremovefield.h diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 5646b3780..959d4f48b 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -27,6 +27,7 @@ declare_test(testnestedtypes) declare_test(testprimitivetypetag) declare_test(testrefcounttag) declare_test(testreferencetopointer) +declare_test(testremovefield) declare_test(testremoveimplconv) declare_test(testresolvetype) declare_test(testreverseoperators) diff --git a/tests/testremovefield.cpp b/tests/testremovefield.cpp new file mode 100644 index 000000000..1b1ae9c6a --- /dev/null +++ b/tests/testremovefield.cpp @@ -0,0 +1,56 @@ +/* +* This file is part of the API Extractor project. +* +* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +* +* Contact: PySide team +* +* 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 "testremovefield.h" +#include +#include "testutil.h" + +void TestRemoveField::testRemoveField() +{ + const char* cppCode ="\ + struct A {\ + int fieldA;\ + int fieldB;\ + };\ + "; + const char* xmlCode = "\ + \ + \ + \ + \ + \ + "; + TestUtil t(cppCode, xmlCode, false); + AbstractMetaClassList classes = t.builder()->classes(); + AbstractMetaClass* classA = classes.findClass("A"); + QVERIFY(classA); + QCOMPARE(classA->fields().size(), 1); + const AbstractMetaField* fieldA = classA->fields().first(); + QVERIFY(fieldA); + QCOMPARE(fieldA->name(), QString("fieldA")); +} + +QTEST_APPLESS_MAIN(TestRemoveField) + +#include "testremovefield.moc" + diff --git a/tests/testremovefield.h b/tests/testremovefield.h new file mode 100644 index 000000000..301150c6f --- /dev/null +++ b/tests/testremovefield.h @@ -0,0 +1,36 @@ +/* +* This file is part of the API Extractor project. +* +* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +* +* Contact: PySide team +* +* 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 TESTREMOVEFIELD_H +#define TESTREMOVEFIELD_H + +#include + +class TestRemoveField : public QObject +{ + Q_OBJECT + private slots: + void testRemoveField(); +}; + +#endif -- cgit v1.2.3