aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/testkit-subset/testkit-subset_test.cpp
blob: 5f3692f11d9f8eb3619ea6825135f8a42a483480 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/test_kit.h>

TEST("will pass main") {
    TEST_TRACE();
    EXPECT_TRUE(true);
}

TEST("will fail main") {
    TEST_TRACE();
    EXPECT_TRUE(false);
}

TEST_MAIN() { TEST_RUN_ALL(); }