aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/protected_test.py
Commit message (Collapse)AuthorAgeFilesLines
* Improved and fixed the setter and getter writer functions.Marcelo Lira2012-03-081-0/+6
| | | | Also added an unit test to a protected container property.
* Added more test cases for protected attributes.Marcelo Lira2012-03-081-6/+38
| | | | | | | | The tests are meant to be useful when compiled without the protected hack or on the win32 platform. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Created debug function on samle bindings.Renato Araujo Oliveira Filho2012-03-081-5/+24
| | | | | | | | This function 'cacheSize()' can be used to check how many objects still registered on BindingManager. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fix char* converterRenato Filho2010-07-271-3/+7
| | | | | | | | Fix tests. Created warnning about return last ref of python object. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* chmod -x on all tests.Hugo Parente Lima2010-06-161-0/+0
| | | | We can't run they standalone anyway, because they need some env vars to be exported like PYTHONPATH.
* Added support for protected fields when not using the "protected hack".Marcelo Lira2010-06-031-1/+12
| | | | Tests were also added.
* Fixes code generation for classes with private destructors.Marcelo Lira2010-06-021-0/+17
| | | | | | This fix is specific for the cases when the "protected hack" is turned off. Also added some tests.
* Generator improved to handle protected enums without the protected hack.Marcelo Lira2010-06-021-4/+32
|
* Adds protected enum test cases.Marcelo Lira2010-06-011-1/+37
|
* Expanded protected method tests with cases of reimplemented grand parent and ↵Marcelo Lira2009-12-021-2/+61
| | | | grand grand parent methods.
* Added tests for classes with virtual and non-virtual protected methods,Marcelo Lira2009-11-241-0/+124
for virtual protected destructors, and for non-virtual protected methods modified with signature removal, add-function and code injection. Also improved the tests for non-protected virtual destructors.