From 110ddab670cbf477488cceeea2842c980942d7b8 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sun, 10 Jun 2018 00:32:04 +0200 Subject: Add deno2 prototype from external repo. --- deno2/deno_test.cc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 deno2/deno_test.cc (limited to 'deno2/deno_test.cc') 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 +// 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(); +} -- cgit v1.2.3