mirror of
https://github.com/status-im/evmc.git
synced 2025-02-23 08:28:15 +00:00
26 lines
731 B
C++
26 lines
731 B
C++
// EVMC: Ethereum Client-VM Connector API
|
|
// Copyright 2018-2019 The EVMC Authors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
#pragma once
|
|
|
|
#include <evmc/evmc.hpp>
|
|
#include <gtest/gtest.h>
|
|
|
|
class evmc_vm_test : public ::testing::Test
|
|
{
|
|
public:
|
|
static void set_vm(evmc::VM _owned_vm) noexcept { owned_vm = std::move(_owned_vm); }
|
|
|
|
protected:
|
|
/// The raw pointer to the loaded VM instance.
|
|
/// The C API is used to allow more sophisticated unit tests.
|
|
evmc_vm* vm = nullptr;
|
|
|
|
/// The C++ RAII wrapper of the loaded VM instance.
|
|
static evmc::VM owned_vm;
|
|
|
|
evmc_vm_test() : vm{owned_vm.get_raw_pointer()} {}
|
|
|
|
void SetUp() override { ASSERT_TRUE(vm != nullptr) << "VM instance not loaded"; }
|
|
};
|