aboutsummaryrefslogtreecommitdiffstats
path: root/messagebus_test/src/tests/compile-cpp/compile-cpp.cpp
blob: c8ab3c60ccbbf3bad90f69af37fdfc1569a3e720 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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("compile-cpp_test");
#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/messagebus/routing/route.h>

TEST_SETUP(Test);

int
Test::Main()
{
    TEST_INIT("compile-cpp_test");
    mbus::Route r;
    TEST_DONE();
}