aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/forcelink/forcelink_test.cpp
blob: 38f02df17829122cc982b75ad2629e0cac7ea4dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/log/log.h>
LOG_SETUP("forcelink_test");
#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/searchlib/expression/forcelink.hpp>
#include <vespa/searchlib/aggregation/forcelink.hpp>

TEST_SETUP(Test);

int
Test::Main()
{
    TEST_INIT("forcelink_test");
    forcelink_searchlib_expression();
    forcelink_searchlib_aggregation();
    TEST_DONE();
}