aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/testkit-subset/testkit-subset_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/testkit-subset/testkit-subset_test.cpp')
-rw-r--r--vespalib/src/tests/testkit-subset/testkit-subset_test.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/vespalib/src/tests/testkit-subset/testkit-subset_test.cpp b/vespalib/src/tests/testkit-subset/testkit-subset_test.cpp
new file mode 100644
index 00000000000..b02e3b9cd5c
--- /dev/null
+++ b/vespalib/src/tests/testkit-subset/testkit-subset_test.cpp
@@ -0,0 +1,14 @@
+// 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 main") {
+ TEST_TRACE();
+ EXPECT_TRUE(true);
+}
+
+TEST("will fail main") {
+ TEST_TRACE();
+ EXPECT_TRUE(false);
+}
+
+TEST_MAIN() { TEST_RUN_ALL(); }