28 lines
960 B
C++
28 lines
960 B
C++
/*------------------------------------------------------------------------------
|
|
* Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team
|
|
*
|
|
* Distributable under the terms of either the Apache License (Version 2.0) or
|
|
* the GNU Lesser General Public License, as specified in the COPYING file.
|
|
------------------------------------------------------------------------------*/
|
|
#include "test.h"
|
|
|
|
unittest tests[] = {
|
|
{"indexwriter", testindexwriter},
|
|
{"debug", testdebug},
|
|
{"analysis", testanalysis},
|
|
{"analyzers", testanalyzers},
|
|
{"highfreq", testhighfreq},
|
|
{"priorityqueue", testpriorityqueue},
|
|
{"queryparser", testQueryParser},
|
|
{"search", testsearch},
|
|
{"termvector",testtermvector},
|
|
{"sort",testsort},
|
|
{"duplicates", testduplicates},
|
|
{"datefilter", testdatefilter},
|
|
{"wildcard", testwildcard},
|
|
{"store", teststore},
|
|
{"utf8", testutf8},
|
|
{"reuters", testreuters},
|
|
{"LastTest", NULL}
|
|
};
|