aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/forcelink/forcelink_test.cpp
blob: 189804c39754455d5adc6a0864eb6e27856d16f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. 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();
}