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

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

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