summaryrefslogtreecommitdiff
path: root/libdeno/test.h
diff options
context:
space:
mode:
Diffstat (limited to 'libdeno/test.h')
-rw-r--r--libdeno/test.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libdeno/test.h b/libdeno/test.h
new file mode 100644
index 000000000..83d92e6fa
--- /dev/null
+++ b/libdeno/test.h
@@ -0,0 +1,11 @@
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+#ifndef TEST_H
+#define TEST_H
+
+#include "deno.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+extern deno_buf snapshot; // Loaded in libdeno/test.cc
+const deno_buf empty = {nullptr, 0, nullptr, 0};
+
+#endif // TEST_H