Beispiel #1
0
  @Test
  public void shouldGetAllCommentsForARnR() throws Exception {
    mapper.insert(new Comment(requisition.getId(), user, "A new Comment1", null));

    List<Comment> listOfComments = mapper.getByRnrId(requisition.getId());

    Comment comment = listOfComments.get(0);
    assertThat(listOfComments.size(), is(1));
    assertThat(comment.getCommentText(), is("A new Comment1"));
    assertThat(comment.getAuthor().getId(), is(user.getId()));
    assertThat(comment.getCreatedDate(), is(notNullValue()));
  }
Beispiel #2
0
  @Test
  public void shouldInsertAComment() throws Exception {
    Comment comment = new Comment(requisition.getId(), user, "A new Comment", null);
    int numberOfRows = mapper.insert(comment);

    assertThat(numberOfRows, is(notNullValue()));
  }