aboutsummaryrefslogtreecommitdiffstats
path: root/configd/src/tests/messages/messages.cpp
blob: 91ad1aec7ad1858f5e85bad63aa29c098caf1606 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

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

class MessagesTest : public vespalib::TestApp
{
public:
    MessagesTest() { }
    int Main() override;
};

int MessagesTest::Main()
{
    TEST_INIT("messages_test");
    TEST_DONE();
}

TEST_APPHOOK(MessagesTest);