equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 #include <wchar.h> |
|
19 #include <stddef.h> |
|
20 |
|
21 #include <iostream> |
|
22 #include <algorithm> |
|
23 |
|
24 #include "cpixfstools.h" |
|
25 |
|
26 #include "itk.h" |
|
27 |
|
28 #include "cpixidxdb.h" |
|
29 |
|
30 #include "config.h" |
|
31 #include "suggestion.h" |
|
32 #include "testutils.h" |
|
33 #include "testcorpus.h" |
|
34 #include "setupsentry.h" |
|
35 |
|
36 |
|
37 /***************************************************************** |
|
38 * |
|
39 * These tests are for the kinds of searches that a client (UX) is |
|
40 * likely to submit. |
|
41 */ |
|
42 |
|
43 |
|
44 Itk::TesterBase * CreateUxQryTests() |
|
45 { |
|
46 using namespace Itk; |
|
47 |
|
48 /* TODO |
|
49 UxQryContext |
|
50 * context = new UxQryContext; |
|
51 |
|
52 ContextTester |
|
53 * contextTester = new ContextTester("ux", |
|
54 context); |
|
55 |
|
56 #define TEST "foobar" |
|
57 contextTester->add(TEST, |
|
58 context, |
|
59 &UxQryContext::testFooBar, |
|
60 TEST); |
|
61 #undef TEST |
|
62 |
|
63 // TODO ADD MORE TESTS ... |
|
64 |
|
65 return context; |
|
66 */ |
|
67 |
|
68 return NULL; |
|
69 } |
|
70 |