コード例 #1
0
 @Test
 public void markdownIncludeShouldContainRenderedMarkdown() {
   final Documentation documentation =
       docsGenerator()
           .documentationFrom(
               create("http://example.org/rel/foo"), ControllerWithMinimalMarkdownInclude.class);
   assertEquals(documentation.getDescription(), emptyList());
   assertEquals(documentation.getDetailedDescription(), "<h1>Hello World!</h1>");
 }
コード例 #2
0
 @Test
 public void docsGeneratorWithRelativeRootShouldWorkToo() {
   final DocsGenerator docsGenerator = new DocsGenerator(create("http://example.org"), "docs/*");
   final Documentation documentation =
       docsGenerator.documentationFrom(
           create("http://example.org/rel/foo"), ControllerWithMinimalMarkdownInclude.class);
   assertEquals(documentation.getDescription(), emptyList());
   assertEquals(documentation.getDetailedDescription(), "<h1>Hello World!</h1>");
 }
コード例 #3
0
 @Test
 public void markdownIncludeWithValuesShouldContainBothDescriptions() {
   final Documentation documentation =
       docsGenerator()
           .documentationFrom(
               create("http://example.org/rel/foo"), ControllerWithMarkdownInclude.class);
   assertEquals(documentation.getDescription(), asList("foo", "bar"));
   assertEquals(documentation.getDetailedDescription(), "<h1>Hello World!</h1>");
 }