From dda325de53c44decafe8f95a803e561b66dbe43f Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Mon, 25 Jul 2011 16:28:10 -0300 Subject: Fixed TypeEntry::isCppPrimitive() to process typedefs and "long long" type. And added an unit test. --- tests/testnumericaltypedef.cpp | 71 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 tests/testnumericaltypedef.cpp (limited to 'tests/testnumericaltypedef.cpp') diff --git a/tests/testnumericaltypedef.cpp b/tests/testnumericaltypedef.cpp new file mode 100644 index 000000000..c479b8d69 --- /dev/null +++ b/tests/testnumericaltypedef.cpp @@ -0,0 +1,71 @@ +/* +* This file is part of the API Extractor project. +* +* Copyright (C) 2011 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 "testnumericaltypedef.h" +#include +#include "testutil.h" + +void TestNumericalTypedef::testNumericalTypedef() +{ + const char* cppCode ="\ + typedef double real;\ + void funcDouble(double);\ + void funcReal(real);\ + "; + const char* xmlCode = "\ + \ + \ + \ + \ + \ + "; + TestUtil t(cppCode, xmlCode, false); + + QCOMPARE(t.builder()->globalFunctions().size(), 2); + const AbstractMetaFunction* funcDouble = t.builder()->globalFunctions().first(); + QVERIFY(funcDouble); + const AbstractMetaFunction* funcReal = t.builder()->globalFunctions().last(); + QVERIFY(funcReal); + + if (funcDouble->name() == "funcReal") + std::swap(funcDouble, funcReal); + + QCOMPARE(funcDouble->minimalSignature(), QString("funcDouble(double)")); + QCOMPARE(funcReal->minimalSignature(), QString("funcReal(real)")); + + const AbstractMetaType* doubleType = funcDouble->arguments().first()->type(); + QVERIFY(doubleType); + QCOMPARE(doubleType->cppSignature(), QString("double")); + QVERIFY(doubleType->isPrimitive()); + QVERIFY(doubleType->typeEntry()->isCppPrimitive()); + + const AbstractMetaType* realType = funcReal->arguments().first()->type(); + QVERIFY(realType); + QCOMPARE(realType->cppSignature(), QString("real")); + QVERIFY(realType->isPrimitive()); + QVERIFY(realType->typeEntry()->isCppPrimitive()); +} + +QTEST_APPLESS_MAIN(TestNumericalTypedef) + +#include "testnumericaltypedef.moc" -- cgit v1.2.3