From e4d8e78f5390b54338a1229f7e8d9c73a1930f1e Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Mon, 28 Jun 2010 08:21:41 -0300 Subject: Added test for finding type scope in cases involving inheritance. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed by Hugo Parente Reviewed by Renato Araújo --- tests/libsample/samplenamespace.h | 1 + tests/samplebinding/inheritanceandscope_test.py | 43 +++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100755 tests/samplebinding/inheritanceandscope_test.py (limited to 'tests') diff --git a/tests/libsample/samplenamespace.h b/tests/libsample/samplenamespace.h index 7109a6c4d..e43a92f41 100644 --- a/tests/libsample/samplenamespace.h +++ b/tests/libsample/samplenamespace.h @@ -94,6 +94,7 @@ class DerivedFromNamespace : public SomeClass::SomeInnerClass::OkThisIsRecursive { public: virtual OkThisIsRecursiveEnough* someVirtualMethod(OkThisIsRecursiveEnough* arg) { return arg; } + OkThisIsRecursiveEnough* methodReturningTypeFromParentScope() { return 0; } }; } // namespace SampleNamespace diff --git a/tests/samplebinding/inheritanceandscope_test.py b/tests/samplebinding/inheritanceandscope_test.py new file mode 100755 index 000000000..cd4ca6d90 --- /dev/null +++ b/tests/samplebinding/inheritanceandscope_test.py @@ -0,0 +1,43 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# This file is part of the Shiboken Python Bindings Generator 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 Lesser General Public License +# version 2.1 as published by the Free Software Foundation. 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. +# # +# 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 +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser 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 + +'''Test cases for finding scope in cases involving inheritance.''' + +import unittest + +from sample import SampleNamespace + +class ScopeAndInheritanceTest(unittest.TestCase): + '''Test cases for finding scope in cases involving inheritance.''' + + def testMethodCorrectlyWrapper(self): + '''A method returning a type declared in the scope of the method's + class parent must be found and the method correctly exported.''' + meth = getattr(SampleNamespace.DerivedFromNamespace, 'methodReturningTypeFromParentScope') + +if __name__ == '__main__': + unittest.main() + -- cgit v1.2.3