/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.bsc.maven.plugin.confluence; import java.io.IOException; /** * * @author bsorrentino */ public class GettingStartedPegdownParseTest extends PegdownParse { private static final String FILE = "getting_started.md"; @Override protected char[] loadResource() throws IOException { return super.loadResource(FILE); } }