summaryrefslogtreecommitdiff
path: root/deno2/deno_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deno2/deno_test.cc')
-rw-r--r--deno2/deno_test.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/deno2/deno_test.cc b/deno2/deno_test.cc
new file mode 100644
index 000000000..3656e1d1f
--- /dev/null
+++ b/deno2/deno_test.cc
@@ -0,0 +1,15 @@
+// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
+// All rights reserved. MIT License.
+#include "testing/gtest/include/gtest/gtest.h"
+
+#include "./deno.h"
+
+TEST(SnapshotTest, InitializesCorrectly) {
+ EXPECT_TRUE(true);
+ // TODO(ry) add actual tests
+}
+
+int main(int argc, char** argv) {
+ testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}