@Test
 public void testGetNavigationFieldInheritor() {
   String className = "Tools.Banner";
   String fullName = "mySpace.myDoc";
   List<String> docList = new ArrayList<String>();
   docList.add(fullName);
   docList.add("myparent.Doc");
   docList.add("myparent.Doc2");
   expect(_mockWebUtils.getDocumentParentsList(eq(fullName), eq(true), same(_context)))
       .andReturn(docList);
   replayAll();
   FieldInheritor inheritor = _factory.getNavigationFieldInheritor(className, fullName, _context);
   XObjectIterator iterator = inheritor.getIteratorFactory().createIterator();
   assertEquals(className, iterator.getClassName());
   assertEquals(docList, iterator.getDocListCopy());
   verifyAll();
 }