Package com.jdkcn.myblog.domain

Examples of com.jdkcn.myblog.domain.Comment


    entry = entryService.saveOrUpdate(entry);
  }
 
  @Test
  public void testSaveOrUpdate() throws Exception {
    Comment comment = new Comment();
    comment.setEntry(entry);
    comment.setAuthor(author);
    comment.setContent("Test comment");
    comment.setEmail("tester@gmail.com");
    comment.setIp("127.0.0.1");
    assertNull(comment.getId());
    String commentId = commentService.saveOrUpdate(comment).getId();
    assertNotNull(commentId);
    Comment savedComment = commentService.get(commentId);
    assertEquals("tester@gmail.com", savedComment.getEmail());
  }
View Full Code Here

TOP

Related Classes of com.jdkcn.myblog.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.