mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
ae0544b7ce
The functionality hasn't been in use for a long time. Without this feature, the `alloc_ptr` and `alloc_len` fields are no longer necessary.
12 lines
343 B
C
12 lines
343 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_snapshot snapshot; // Loaded in libdeno/test.cc
|
|
const deno_buf empty = {nullptr, 0};
|
|
const deno_snapshot empty_snapshot = {nullptr, 0};
|
|
|
|
#endif // TEST_H_
|