blob: 1367b5dde24adf04a12456ae17aa8db0e5629e26 [file] [log] [blame]
/*
* Copyright 2019, Yahoo! Inc. Licensed under the terms of the
* Apache License 2.0. See LICENSE file at the project root for terms.
*/
package com.yahoo.sketches.docgen;
import org.testng.annotations.Test;
import com.yahoo.sketches.docgen.TocGenerator;
/**
* @author Lee Rhodes
*/
public class TocGeneratorTest {
@Test
public void testTocGenerator() {
final String jsonSrcFile = "local/toc2.json";
final String htmlScriptFile = "src/main/resources/docgen/tocScript.html";
final String tgtTocFile = "local/toc2.html";
TocGenerator tocgen = new TocGenerator(jsonSrcFile, htmlScriptFile, tgtTocFile);
tocgen.readJson();
}
}