Package br.com.mystudies.domain.entity

Examples of br.com.mystudies.domain.entity.Story



    @Test
    public void shouldUpdateStatusStory() {

      Story story =
          new Story(null,null, StoryStatus.TODO, null, null);

      when(storyDao.getStory(any(Long.class))).thenReturn(story);
      when(storyDao.update(story)).thenReturn(story);


         story = storyServiceBean.updateStatusStory(1L, StoryStatus.DOING);


        verify(storyDao).getStory(1L);
        verify(storyDao).update(story);


        assertEquals(StoryStatus.DOING, story.getStatus());



/*    when(storyDao.getStory(any(Long.class))).thenReturn(new Story());

View Full Code Here

TOP

Related Classes of br.com.mystudies.domain.entity.Story

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.