diff options
Diffstat (limited to 'library/cpp/openssl/holders/ut/hmac_ut.cpp')
-rw-r--r-- | library/cpp/openssl/holders/ut/hmac_ut.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/library/cpp/openssl/holders/ut/hmac_ut.cpp b/library/cpp/openssl/holders/ut/hmac_ut.cpp new file mode 100644 index 0000000000..60f561c337 --- /dev/null +++ b/library/cpp/openssl/holders/ut/hmac_ut.cpp @@ -0,0 +1,10 @@ +#include "hmac.h" + +#include <library/cpp/testing/unittest/registar.h> + +Y_UNIT_TEST_SUITE(Hmac) { + Y_UNIT_TEST(Ctx) { + NOpenSSL::THmacCtx ctx; + UNIT_ASSERT(ctx); + } +} |