public void testStory() { Story story = new Story(); StoryUtil.withBreakOnAssert(story, false); // story.assertEquals("23 not 42", 42, 23, 0.01); story.assertEquals("42 == 42", 42, 42); story.addSourceCode(StoryTest.class); // story.add(new StoryStepSourceCode().withCode(StoryTest.class).withCode("src/test/java")); story.withFileName("test.html"); story.dumpHTML(); }
Code: Story