| 46 | class OpenSSLUtilTest : public ::testing::Test { |
| 47 | protected: |
| 48 | virtual void SetUp() { SeedOpenSSLRNG(); } |
| 49 | virtual void TearDown() { |
| 50 | EXPECT_EQ(ERR_peek_error(), 0) << "Did not clear OpenSSL error queue"; |
| 51 | } |
nothing calls this directly
no test coverage detected