ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
PrintStream printStream = new PrintStream(byteStream);
StoryPrinter printer = new StoryPrinter(
new StoryLoader(new TextStoryParser(), Thread.currentThread().getContextClassLoader()),
new PlainTextRenderer(printStream));
printer.print(SimpleStory.class.getName());
String result = byteStream.toString();
ensureThat(result, eq(SimpleStory.expectedDescription()));