aboutsummaryrefslogtreecommitdiffstats
path: root/tests/minimalbinding/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Added the basic cases for container conversions.Marcelo Lira2012-03-081-0/+1
| | | | | | | | | | | | | | | The cases are made of conversions of lists of: * C++ primitive type * C++ class treated as Python primitive type * Value type as C++ value * Object type as C++ pointer * Container of container of C++ primitive type The container is converted when called from Python or from C++ (via virtual methods), and passed as arguments to Python and to C++. Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Added class to be treated as a specific (bool, in this case) primitive type ↵Marcelo Lira2012-03-081-0/+1
| | | | | | in Python. Unit tests were also added.
* Added a new test binding called 'minimal'.Marcelo Lira2012-03-081-0/+38
The purpose is to have the smallest possible binding to help when doing complex changes that require a good deal of debugging and tracking, and the many operations performed in too many wrapped classes will clutter any output used for those purposes. In other words: don't add anything here except with a good reason for it, prefer to use 'sample' or 'other' binding for that. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>