summaryrefslogtreecommitdiffstats
path: root/src/tests/entitytest.cpp
blob: 8163946317ddd00ffb1b9f3bf7a124c16372a7a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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;
}