aboutsummaryrefslogtreecommitdiffstats
path: root/tests/otherbinding
Commit message (Collapse)AuthorAgeFilesLines
* Add unit test for bug#237.Hugo Parente Lima2010-06-211-0/+48
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixes the build-tests by including the library postfixes in the programRenato Filho2010-06-181-1/+1
| | | | | | | | calls Author: Didier Raboud <didier@raboud.com> Reviewers: Luciano Wolf <luciano.wolf@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Used CMAKE_DEBUG_POSTFIX in plugin name on generatorrunner.Renato Filho2010-06-171-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Unit test for multiple derived classes.Renato Filho2010-04-121-2/+26
|
* libsample's Point extended with a reverse operator defined in libother.Marcelo Lira2010-03-311-0/+59
| | | | | | | | | | The libother's Number class now defines a multiply reverse operator with libsample's Point class. Tests were added to check if the generated binding correctly calls Number.__rmul__ method with Point as argument. Reviewed by Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Extended extended reverse shift operator test.Marcelo Lira2010-03-311-3/+9
| | | | Just added the basic case of "Collector << ObjectType".
* Adding OtherObjectType to libotherLauro Neto2010-03-224-0/+50
| | | | Used in external reverse operators defined in other modules.
* Adds tests for a class without implicit conversions being extended in ↵Marcelo Lira2010-03-024-0/+71
| | | | | | | | | | | another module. One value type class, called NoImplicitConversion, without implicit conversions of any kind is declared in the first library, libsample. In the other library, libother, ExtendsNoImplicitConversion defines a conversion operator to turn itself into a NoImplicitConversion class. The unit tests tries to pass an ExtendsNoImplicitConversion object where a NoImplicitConversion is expected.
* Fix bug#142.Hugo Lima2010-02-243-0/+3
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org> and Luciano Wolf <luciano.wolf@openbossa.org>
* other binding does not link against sample binding.Hugo Lima2010-02-181-2/+1
|
* Adds test for cast operator for a class in a different module.Marcelo Lira2010-02-184-0/+55
| | | | | | | | The new test adds a Number class to test library libother which defines an cast operator to Str, from libsample. The unit test tries to build an Str object passing an Number parameter. Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Adds "libother" as a new test library.Marcelo Lira2009-12-294-0/+146
New test library and corresponding binding were added to check for intermodule problems. The CMake linkage type for the modules had to be changed from MODULE to SHARED. Reviewed by Hugo Parente <hugo.lima@openbossa.org>