diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-02-10 16:45:17 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:17 +0300 |
commit | d3a398281c6fd1d3672036cb2d63f842d2cb28c5 (patch) | |
tree | dd4bd3ca0f36b817e96812825ffaf10d645803f2 /library/cpp/digest/sfh/sfh_ut.cpp | |
parent | 72cb13b4aff9bc9cf22e49251bc8fd143f82538f (diff) | |
download | ydb-d3a398281c6fd1d3672036cb2d63f842d2cb28c5.tar.gz |
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/digest/sfh/sfh_ut.cpp')
-rw-r--r-- | library/cpp/digest/sfh/sfh_ut.cpp | 76 |
1 files changed, 38 insertions, 38 deletions
diff --git a/library/cpp/digest/sfh/sfh_ut.cpp b/library/cpp/digest/sfh/sfh_ut.cpp index 79606232de..912999bae7 100644 --- a/library/cpp/digest/sfh/sfh_ut.cpp +++ b/library/cpp/digest/sfh/sfh_ut.cpp @@ -1,40 +1,40 @@ -#include "sfh.h" - +#include "sfh.h" + #include <library/cpp/testing/unittest/registar.h> - + #include <util/stream/output.h> - -class TSfhTest: public TTestBase { - UNIT_TEST_SUITE(TSfhTest); - UNIT_TEST(TestSfh) - UNIT_TEST_SUITE_END(); - -private: - inline void TestSfh() { - ui8 buf[256]; - - for (size_t i = 0; i < 256; ++i) { - buf[i] = i; - } - - Test(buf, 256, 3840866583UL); - Test(buf, 255, 325350515UL); - Test(buf, 254, 2920741773UL); - Test(buf, 253, 3586628615UL); - } - -private: - inline void Test(const void* data, size_t len, ui32 expected) { - const ui32 res = SuperFastHash(data, len); - - try { - UNIT_ASSERT_EQUAL(res, expected); - } catch (...) { - Cerr << res << ", " << expected << Endl; - - throw; - } - } -}; - -UNIT_TEST_SUITE_REGISTRATION(TSfhTest); + +class TSfhTest: public TTestBase { + UNIT_TEST_SUITE(TSfhTest); + UNIT_TEST(TestSfh) + UNIT_TEST_SUITE_END(); + +private: + inline void TestSfh() { + ui8 buf[256]; + + for (size_t i = 0; i < 256; ++i) { + buf[i] = i; + } + + Test(buf, 256, 3840866583UL); + Test(buf, 255, 325350515UL); + Test(buf, 254, 2920741773UL); + Test(buf, 253, 3586628615UL); + } + +private: + inline void Test(const void* data, size_t len, ui32 expected) { + const ui32 res = SuperFastHash(data, len); + + try { + UNIT_ASSERT_EQUAL(res, expected); + } catch (...) { + Cerr << res << ", " << expected << Endl; + + throw; + } + } +}; + +UNIT_TEST_SUITE_REGISTRATION(TSfhTest); |