blob: 91e7119e830d67c2a3dbda256c2d3411876c9171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2018-2019 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
|