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

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

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