blob: 0b570a4b52d4bfc24b37d6960ddb9c0b498ccfd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License.
#include "testing/gtest/include/gtest/gtest.h"
#include "include/deno.h"
TEST(DenoTest, InitializesCorrectly) {
deno_init();
Deno* d = deno_new(NULL, NULL);
int r = deno_load(d, "a.js", "1 + 2");
EXPECT_EQ(r, 0);
}
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
|