~zorba-coders/zorba/bug-1044260

« back to all changes in this revision

Viewing changes to src/unit_tests/unit_test_list.h

  • Committer: Paul J. Lucas
  • Date: 2012-10-09 17:37:56 UTC
  • mfrom: (11049.1.45 zorba)
  • Revision ID: paul@lucasmail.org-20121009173756-29cb3b50fz5jueqt
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
namespace UnitTests {
26
26
 
27
27
  int runUriTest(int argc, char* argv[]);
 
28
 
28
29
  int runDebuggerProtocolTest(int argc, char* argv[]);
 
30
 
29
31
  int test_base64( int, char*[] );
 
32
 
30
33
  int test_base64_streambuf( int, char*[] );
 
34
 
31
35
  int test_fs_iterator( int, char*[] );
 
36
 
32
37
#ifndef ZORBA_NO_ICU
33
38
  int test_icu_streambuf( int, char*[] );
34
39
#endif /* ZORBA_NO_ICU */
 
40
 
35
41
  int test_json_parser( int, char*[] );
 
42
 
36
43
  int test_string( int, char*[] );
 
44
 
37
45
  int test_unique_ptr( int, char*[] );
 
46
 
38
47
  int test_fs_iterator( int, char*[] );
39
 
  //int test_mem_manager( int, char*[] );
 
48
 
40
49
#ifndef ZORBA_NO_FULL_TEXT
41
50
  int test_stemmer( int, char*[] );
42
51
  int test_thesaurus( int, char*[] );
43
52
  int test_tokenizer( int, char*[] );
44
53
#endif /* ZORBA_NO_FULL_TEXT */
 
54
 
45
55
#ifndef ZORBA_HAVE_UNIQUE_PTR
46
56
  int test_unique_ptr( int, char*[] );
47
57
#endif /* ZORBA_HAVE_UNIQUE_PTR */
 
58
 
48
59
  int test_uuid( int, char*[] );
 
60
 
49
61
#ifndef ZORBA_HAVE_UNORDERED_MAP
50
62
  int test_unordered_map( int, char*[] );
51
63
#endif /* ZORBA_HAVE_UNORDERED_MAP */
 
64
 
52
65
#ifndef ZORBA_HAVE_UNORDERED_SET
53
66
  int test_unordered_set( int, char*[] );
54
67
#endif /* ZORBA_HAVE_UNORDERED_SET */
55
68
 
 
69
  int test_hashmaps(int argc, char* argv[]);
 
70
 
56
71
  void initializeTestList();
57
72
 
58
73
} // namespace UnitTests