#include "mojo/public/cpp/bindings/lib/hash_util.h"
#include "mojo/public/interfaces/bindings/tests/test_structs.test-mojom.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace mojo {
namespace test {
namespace {
using HashTest = testing::Test;
TEST_F(HashTest, NestedStruct) {
ASSERT_EQ(
::mojo::internal::Hash(::mojo::internal::kHashSeed,
SimpleNestedStruct::New(ContainsOther::New(1))),
::mojo::internal::Hash(::mojo::internal::kHashSeed,
SimpleNestedStruct::New(ContainsOther::New(1))));
}
}
}
}