/** Verifies that the toString method has been overridden. */
 public void testListWrapper_toStringNoSelection() {
   int type = List.IMPLICIT;
   ListWrapper fw = new ListWrapper(title, type);
   assertEquals(UNOVERRIDED_TOSTRING_ERROR, DisplayableVisitor.toString(fw), fw.toString());
 }