forgot test

pull/395/head
Jeff Becker 5 years ago
parent 990049f423
commit e042fadf18
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -0,0 +1,9 @@
#include <gtest/gtest.h>
#include <abyss/md5.hpp>
TEST(TestMD5, TestMD5)
{
std::string str("The quick brown fox jumps over the lazy dog");
auto H = MD5::SumHex(str);
ASSERT_EQ(H, "9e107d9d372bb6826bd81d3542a419d6");
};
Loading…
Cancel
Save