Files
loongoffice/test
Noel Grandin 08fe82e59c Remove unnecessary use of OUString constructor in + expressions
Convert code like
  aFilename =  OUString::number(nFilePostfixCount) + OUString(".bmp");
to
  aFilename =  OUString::number(nFilePostfixCount) + ".bmp";

Change-Id: I03f513ad1c8ec8846b2afbdc67ab12525ed07e50
2013-12-17 11:49:03 +02:00
..
2013-11-09 06:36:49 +01:00

Test harness code for C++ unit testing

Many of these tests are run during the build process. In that case on
unix, if a test fails follow the error messages to debug it under gdb.