}
private static List<org.moresbycoffee.have.domain.Story> parseStories(final Class<?> testClass) throws MByHaveException {
final List<org.moresbycoffee.have.domain.Story> mutableStories = new ArrayList<org.moresbycoffee.have.domain.Story>();
if (testClass.isAnnotationPresent(Story.class)) {
final Story story = testClass.getAnnotation(Story.class);
final String[] storyFiles = story.files();
for (final String storyFile : storyFiles) {
final InputStream storyIs = loadResource(storyFile, testClass);
org.moresbycoffee.have.domain.Story storyObject;