Examples of CommentHome


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

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.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
Copyright © 2018 www.massapi.com. 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.