blob: 23e0e267595cc014c634f545fd847ae305ef6793 [file] [log] [blame]
#include <stdplus/hash.hpp>
#include <string>
#include <gtest/gtest.h>
namespace stdplus
{
TEST(HashMulti, Basic)
{
EXPECT_EQ(0, hashMulti());
EXPECT_EQ(2654435834, hashMulti(1, 2));
hashMulti(1, std::string("bacon"), nullptr);
}
} // namespace stdplus