summaryrefslogtreecommitdiff
path: root/deno2/deno_test.cc
blob: 4d3d20d9495534ec4a06b56bfdf5cddd6d39f07e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License.
#include "testing/gtest/include/gtest/gtest.h"

#include "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();
}