stack.hashCode() == stack.hashCode() );
assertTrue( "stacks should be equal: " + stack + ", " + other,
stack.hashCode() == other.hashCode() );
other.push( 30 );
assertFalse( "stack should not equal list: " + stack + ", " + other,
stack.hashCode() == other.hashCode() );
}