private void initializeStoryFrom(final Class<?> testCase) {
   Story story;
   if (Story.testedInTestCase(testCase) != null) {
     story = Story.from(Story.testedInTestCase(testCase));
   } else {
     story = Story.from(testCase);
   }
   setUserStory(story);
 }