aboutsummaryrefslogtreecommitdiffstats
path: root/tests/otherbinding/typesystem_other.xml
Commit message (Collapse)AuthorAgeFilesLines
* Adding OtherObjectType to libotherLauro Neto2010-03-221-0/+1
| | | | Used in external reverse operators defined in other modules.
* Adds tests for a class without implicit conversions being extended in ↵Marcelo Lira2010-03-021-0/+1
| | | | | | | | | | | 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-241-0/+1
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org> and Luciano Wolf <luciano.wolf@openbossa.org>
* Adds test for cast operator for a class in a different module.Marcelo Lira2010-02-181-0/+2
| | | | | | | | 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-291-0/+8
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>