#include #include #include #include #include using namespace homcert; class BFV_SEAL : public ::testing::Test { protected: inline static std::shared_ptr CTX0; static void SetUpTestSuite() { CTX0 = std::make_shared(); if (!CTX0) GTEST_SKIP() << "Microsoft SEAL BFV implementation is not available!"; } static void TearDownTestSuite() {} }; TEST_F(BFV_SEAL, XXX) { } int main(int argc, char** argv) { testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }