~ubuntu-branches/ubuntu/hardy/strigi/hardy

« back to all changes in this revision

Viewing changes to tests/luceneindexer/luceneindexsearchtest.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2007-10-26 19:15:00 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20071026191500-glnb58jrms7gv26w
Tags: 0.5.7-1
* New upstream release.
* Update branch pull patch to r729946.
* Add query.h, queryparser.h and variant.h to libstreamanalyzer-dev package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of Strigi Desktop Search
2
 
 *
3
 
 * Copyright (C) 2007 Flavio Castelli <flavio.castelli@gmail.com>
4
 
 *
5
 
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU Library General Public
7
 
 * License as published by the Free Software Foundation; either
8
 
 * version 2 of the License, or (at your option) any later version.
9
 
 *
10
 
 * This library is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
 * Library General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Library General Public License
16
 
 * along with this library; see the file COPYING.LIB.  If not, write to
17
 
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18
 
 * Boston, MA 02110-1301, USA.
19
 
 */
20
 
#include "luceneindexsearchtest.h"
21
 
 
22
 
using namespace std;
23
 
using namespace strigiunittest;
24
 
 
25
 
// Registers the fixture into the 'registry'
26
 
CPPUNIT_TEST_SUITE_REGISTRATION( LuceneIndexSearchTest );
27
 
 
28
 
void LuceneIndexSearchTest::setUp()
29
 
{
30
 
    backend = "clucene";
31
 
    IndexSearchTester::setUp();
32
 
}
33
 
 
34
 
void LuceneIndexSearchTest::tearDown()
35
 
{
36
 
    IndexSearchTester::tearDown();
37
 
}