@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());