You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tellico/src/tests/entitytest.cpp

20 lines
585 B

#ifdef TQT_NO_CAST_ASCII
#undef TQT_NO_CAST_ASCII
#endif
#include "tellico_utils.h"
#include <kdebug.h>
#include <assert.h>
int main(int, char**) {
kdDebug() << "\n*****************************************************" << endl;
assert(Tellico::decodeHTML("robby") == "robby");
assert(Tellico::decodeHTML("&fake;") == "&fake;");
assert(Tellico::decodeHTML("&#48;") == "0");
assert(Tellico::decodeHTML("robby&#48;robby") == "robby0robby");
kdDebug() << "\ndecodeHTML Test OK !" << endl;
kdDebug() << "\n*****************************************************" << endl;
}