summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/tutorial/simple/simple_test.cpp
blob: 3e888cbed03e2fe75abb8b748574e5fbe7e1edcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/test_kit.h>

TEST("require something") {
    EXPECT_TRUE(true);
}

TEST("require something else") {
    EXPECT_TRUE(true);
}

TEST_MAIN() { TEST_RUN_ALL(); }