Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
test.hpp
Go to the documentation of this file.
1#pragma once
2#include <gtest/gtest.h>
3
4#ifdef DISABLE_HEAVY_TESTS
5#define HEAVY_TEST(x, y) TEST(x, DISABLED_##y)
6#define HEAVY_TEST_F(x, y) TEST_F(x, DISABLED_##y)
7#define HEAVY_TYPED_TEST(x, y) TYPED_TEST(x, DISABLED_##y)
8#else
9#define HEAVY_TEST(x, y) TEST(x, y)
10#define HEAVY_TEST_F(x, y) TEST_F(x, y)
11#define HEAVY_TYPED_TEST(x, y) TYPED_TEST(x, y)
12#endif