assertTrue("Unexpected hash code for info w/default value", info.hashCode() == hashCode(info));
}
public void testNullDefaultValueHashCode() throws Exception
{
OpenMBeanAttributeInfoSupport info =
new OpenMBeanAttributeInfoSupport("price",
"how much it costs",
SimpleType.FLOAT,
true,
false,
false,
null);
assertTrue("Unexpected hash code for info w/null default value",
info.hashCode() == hashCode(info));
}