aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/testkit-subset/testkit-subset_extra.cpp
blob: 6b507f23cefaf9d27f98dc9646b2f1494bdb53ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2016 Yahoo Inc. 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 extra") {
    TEST_TRACE();
    EXPECT_TRUE(true);
}

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