32 lines
523 B
C++
32 lines
523 B
C++
#include <iostream>
|
|
#include <cstddef>
|
|
#include <memory>
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <bfv.hpp>
|
|
|
|
using namespace homcert;
|
|
|
|
class BFV : public ::testing::Test {
|
|
protected:
|
|
std::shared_ptr<bfv::context> m_context;
|
|
};
|
|
|
|
class BFV_SEAL : public BFV {
|
|
protected:
|
|
static void SetUpTestSuite() {
|
|
// GTEST_SKIP() << "Test environment not available";
|
|
}
|
|
|
|
static void TearDownTestSuite() {}
|
|
};
|
|
|
|
TEST_F(BFV_SEAL, XXX) {
|
|
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|