mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
b8a537d020
A new low-level crate with focus on speed. This doesn't yet hook into the existing code base.
11 lines
302 B
C
11 lines
302 B
C
// 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, 0};
|
|
|
|
#endif // TEST_H_
|