summaryrefslogtreecommitdiff
path: root/test/hello_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/hello_test.cc')
-rw-r--r--test/hello_test.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/hello_test.cc b/test/hello_test.cc
deleted file mode 100644
index 5a57e13..0000000
--- a/test/hello_test.cc
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <gtest/gtest.h>
-
-// Demonstrate some basic assertions.
-TEST(HelloTest, BasicAssertions) {
- // Expect two strings not to be equal.
- EXPECT_STRNE("hello", "world");
- // Expect equality.
- EXPECT_EQ(7 * 6, 42);
-}