* Test for inequality when only the newSuperior DNs are different.
*/
@Test
public void testNotEqualDiffNewSuperior() throws LdapException
{
ModifyDnRequestImpl req0 = getRequest();
req0.setNewSuperior( new Dn( "cn=admin,dc=example,dc=com" ) );
ModifyDnRequestImpl req1 = getRequest();
req1.setNewSuperior( new Dn( "cn=admin,dc=apache,dc=org" ) );
assertFalse( req0.equals( req1 ) );
}