Package org.jboss.seam.wiki.core.action

Examples of org.jboss.seam.wiki.core.action.CommentHome


                assert getValue("#{documentHome.instance.id}").equals(6l);
            }

            protected void invokeApplication() throws Exception {

                CommentHome commentHome = (CommentHome)getInstance(CommentHome.class);

                commentHome.newComment();

                commentHome.getInstance().setFromUserName("Foo");
                commentHome.getInstance().setFromUserHomepage("http://foo.bar");
                commentHome.getInstance().setFromUserEmail("foo@bar.tld");
                commentHome.getInstance().setSubject("Some Subject");
                commentHome.getTextEditor().setValue("Some Content");

                invokeMethod("#{commentHome.persist}");

                CommentQuery commentQuery = (CommentQuery)getInstance(CommentQuery.class);
                assert commentQuery.getComments().size() == 7;
View Full Code Here


                assert getValue("#{documentHome.instance.id}").equals(6l);
            }

            protected void invokeApplication() throws Exception {

                CommentHome commentHome = (CommentHome)getInstance(CommentHome.class);

                commentHome.replyTo();

                commentHome.getInstance().setFromUserName("Foo");
                commentHome.getInstance().setFromUserHomepage("http://foo.bar");
                commentHome.getInstance().setFromUserEmail("foo@bar.tld");
                commentHome.getInstance().setSubject("Some Subject");
                commentHome.getTextEditor().setValue("Some Content");

                invokeMethod("#{commentHome.persist}");

                CommentQuery commentQuery = (CommentQuery)getInstance(CommentQuery.class);
                assert commentQuery.getComments().size() == 7;
View Full Code Here

TOP

Related Classes of org.jboss.seam.wiki.core.action.CommentHome

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.