Package com.lissenberg.blog.domain

Examples of com.lissenberg.blog.domain.Comment


    @Test
    public void testComments() throws Exception {
        entityTransaction.begin();
        for (int i = 0; i < 100; i++) {
            blogService.saveComment(new Comment(1L, "My name" + i, "Great post. Thanks!" + i));
        }
        entityTransaction.commit();
        List<Comment> comments = blogService.getCommentsForPost(1L);
        assertEquals(100, comments.size());
    }
View Full Code Here

TOP

Related Classes of com.lissenberg.blog.domain.Comment

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.