com.github.jcustenborder.kafka.connect.utils.config.MarkdownFormatter Java Examples

The following examples show how to use com.github.jcustenborder.kafka.connect.utils.config.MarkdownFormatter. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MongoSinkConfigTest.java    From mongo-kafka with Apache License 2.0 5 votes vote down vote up
@Test
@DisplayName("build config doc (no test)")
// CHECKSTYLE:OFF
void doc() {
  System.out.println(MongoSinkConfig.CONFIG.toRst());
  System.out.println(MarkdownFormatter.toMarkdown(MongoSinkConfig.CONFIG));
  assertTrue(true);
}
 
Example #2
Source File: MongoSourceConfigTest.java    From mongo-kafka with Apache License 2.0 5 votes vote down vote up
@Test
@DisplayName("build config doc (no test)")
// CHECKSTYLE:OFF
void doc() {
  System.out.println(MongoSourceConfig.CONFIG.toRst());
  System.out.println(MarkdownFormatter.toMarkdown(MongoSourceConfig.CONFIG));
  assertTrue(true);
}
 
Example #3
Source File: MongoDbSinkConnectorConfigTest.java    From kafka-connect-mongodb with Apache License 2.0 5 votes vote down vote up
@Test
@DisplayName("build config doc (no test)")
public void doc() {
    System.out.println(MongoDbSinkConnectorConfig.conf().toRst());
    System.out.println(MarkdownFormatter.toMarkdown(MongoDbSinkConnectorConfig.conf()));
    assertTrue(true);
}