*/
@Test
public void testEqualsObject() {
uri = new PageURIImpl(site, path);
location = new PageletURIImpl(uri, composer, position);
PageletURI sameLocation = new PageletURIImpl(uri, composer, position);
assertEquals(location, sameLocation);
assertFalse(location.equals(new PageletURIImpl(new PageURIImpl(site, "/test2"), composer, position)));
assertFalse(location.equals(new PageletURIImpl(uri, "main2", position)));
assertFalse(location.equals(new PageletURIImpl(uri, composer, position + 1)));
}