mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
12 lines
291 B
C
12 lines
291 B
C
|
// 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
|