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

TEST_SETUP(Test)

int
Test::Main()
{
    TEST_INIT("true_test");
    EXPECT_TRUE(true);
    TEST_DONE();
}