aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/overload_test.py
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2009-10-27 15:28:54 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2009-10-27 15:28:54 -0300
commit8782c39052ead7300ed621a3c91905c674c37927 (patch)
tree1bf2ae6af50d66159057e362e0f25d76de78ace5 /tests/samplebinding/overload_test.py
parent0cd881dbf54fb964ba5d46ab842a98b6145387ab (diff)
added more test cases to check overload decisor behavior
Diffstat (limited to 'tests/samplebinding/overload_test.py')
-rwxr-xr-xtests/samplebinding/overload_test.py66
1 files changed, 66 insertions, 0 deletions
diff --git a/tests/samplebinding/overload_test.py b/tests/samplebinding/overload_test.py
new file mode 100755
index 000000000..f7d7c0756
--- /dev/null
+++ b/tests/samplebinding/overload_test.py
@@ -0,0 +1,66 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# This file is part of the Shiboken Python Bindings Generator project.
+#
+# Copyright (C) 2009 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 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 Overload class'''
+
+import sys
+import unittest
+
+from sample import Overload, Point, Size
+
+class OVerloadTest(unittest.TestCase):
+ '''Test case for Overload class'''
+
+ def testOverloadMethod0(self):
+ '''Check overloaded method calling for signature "overloaded()".'''
+ overload = Overload()
+ result = overload.overloaded()
+ self.assertEqual(result, Overload.Function0)
+
+ def testOverloadMethod1(self):
+ '''Check overloaded method calling for signature "overloaded(Size*)".'''
+ overload = Overload()
+ size = Size()
+ result = overload.overloaded(size)
+ self.assertEqual(result, Overload.Function1)
+
+ def testOverloadMethod2(self):
+ '''Check overloaded method calling for signature "overloaded(Point*, ParamEnum)".'''
+ overload = Overload()
+ point = Point()
+ result = overload.overloaded(point, Overload.Param1)
+ self.assertEqual(result, Overload.Function2)
+
+ def testOverloadMethod3(self):
+ '''Check overloaded method calling for signature "overloaded(const Point&)".'''
+ overload = Overload()
+ point = Point()
+ result = overload.overloaded(point)
+ self.assertEqual(result, Overload.Function3)
+
+if __name__ == '__main__':
+ unittest.main()
+