From: <ssk...@vh...> - 2005-09-02 07:32:52
|
Author: sskracic Date: 2005-09-02 09:24:02 +0200 (Fri, 02 Sep 2005) New Revision: 737 Modified: ccm-core/trunk/test/src/com/arsdigita/search/NoteAdapter.java ccm-core/trunk/test/src/com/arsdigita/search/intermedia/SearchTestBookH.java Log: Made tests compile again. Modified: ccm-core/trunk/test/src/com/arsdigita/search/NoteAdapter.java =================================================================== --- ccm-core/trunk/test/src/com/arsdigita/search/NoteAdapter.java 2005-09-01 12:36:52 UTC (rev 736) +++ ccm-core/trunk/test/src/com/arsdigita/search/NoteAdapter.java 2005-09-02 07:24:02 UTC (rev 737) @@ -59,6 +59,9 @@ Note note = (Note)dobj; return note.getLastModifiedUser(); } + public String getContentSection(DomainObject dobj) { + return ""; + } public ContentProvider[] getContent(DomainObject dobj, ContentType type) { Note note = (Note)dobj; Modified: ccm-core/trunk/test/src/com/arsdigita/search/intermedia/SearchTestBookH.java =================================================================== --- ccm-core/trunk/test/src/com/arsdigita/search/intermedia/SearchTestBookH.java 2005-09-01 12:36:52 UTC (rev 736) +++ ccm-core/trunk/test/src/com/arsdigita/search/intermedia/SearchTestBookH.java 2005-09-02 07:24:02 UTC (rev 737) @@ -72,6 +72,10 @@ return "SearchTestBookH-DisplayName"; } + public String getContentSection() { + return ""; + } + /* Register instantiator with DomainObjectFactory, must be called by initializer */ public static void setupDomainObjectFactory() { |