aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/str.h
Commit message (Collapse)AuthorAgeFilesLines
* Change the license boiler plates of all LGPL files removing the special ↵Hugo Parente Lima2010-09-091-20/+8
| | | | | | | exception. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* fixed tests exported symbols.Renato Filho2010-08-181-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* MSVC complains about the missing operator< in Str when we use it on a std::list.Hugo Parente Lima2010-06-141-0/+1
|
* Add hash function for Str and proper unit test.Hugo Lima2010-02-231-0/+2
|
* Added another constructor to Str class, just to test the new char behaviour.Hugo Lima2010-01-201-0/+1
| | | | | The new behaviour consists in accepting numbers or 1-sized strings when a char is expected.
* Adds test for modified function using type system template.Marcelo Lira2009-12-291-0/+2
| | | | | | | | | | The new test adds a "toInt(bool* ok = 0, int base = 10)" method to Str class. The modification uses a type system template function that uses the variable "%2" to reference the "base" argument; in the case when the thing is called without parameters "%2" should be replaced by "10" instead of a converted C++ variable name. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Added visibility rules to libsample.Hugo Lima2009-11-231-3/+5
|
* Added a great deal of tests to virtual method modification cases.Marcelo Lira2009-11-231-0/+1
|
* Added a reverse operator to the test class Str.Hugo Lima2009-11-101-3/+11
|
* * added the ObjectType example which adds some cases similar toMarcelo Lira2009-11-031-1/+3
| | | | | | | | | | those on Qt's QObject (object name, parent and children list), although no ownership test was added yet. * added method Abstract::getObjectId(Abstract*) as a case of an argument that should be converted to an abstract type. * added ListUser::multiplyPointList(std::list<Point*>&, double), which tests the conversion from a Python list of Point wrappers to a C++ list whose items will be altered.
* added the Str class to libsample and test cases that check the __str__Marcelo Lira2009-10-301-0/+62
implementation and a method that receives a C++ class reference through a Python type implictly convertible to said C++ class Reviewed by Hugo Lima <hugo.lima@openbossa.org>