| 72 | private: |
| 73 | template <class T> |
| 74 | inline void Test(const void* data, size_t len, T expected) { |
| 75 | UNIT_ASSERT_STRINGS_EQUAL(ToString(MurmurHash<T>(data, len)), ToString(expected)); |
| 76 | } |
| 77 | |
| 78 | template <class E, class T> |
| 79 | inline void TestWrapper(const TArrayRef<E>& array, T expected) { |
nothing calls this directly
no test coverage detected