2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-01-29 21:31:59 -05:00
|
|
|
#ifndef TEST_H_
|
|
|
|
#define TEST_H_
|
2018-10-23 19:39:31 -04:00
|
|
|
|
|
|
|
#include "deno.h"
|
|
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
|
2019-04-08 10:12:43 -04:00
|
|
|
extern deno_snapshot snapshot; // Loaded in libdeno/test.cc
|
2019-05-01 18:18:18 -04:00
|
|
|
const deno_buf empty = {nullptr, 0};
|
2019-04-08 10:12:43 -04:00
|
|
|
const deno_snapshot empty_snapshot = {nullptr, 0};
|
2018-10-23 19:39:31 -04:00
|
|
|
|
2019-01-29 21:31:59 -05:00
|
|
|
#endif // TEST_H_
|