aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary/src/tests/juniper/queryparserTestApp.cpp
blob: c34f0b77ae9971931826a4c558d6c2dff0c7ca98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "queryparserTest.h"
#include "testenv.h"
#include <vespa/vespalib/testkit/testapp.h>


int main(int argc, char **argv) {
    juniper::TestEnv te(argc, argv, TEST_PATH("./testclient.rc").c_str());
    QueryParserTest test;
    test.SetStream(&std::cout);
    test.Run(argc, argv);
    return (int)test.Report();
}