package eu.dnetlib.data.tool; import java.io.IOException; import java.net.URISyntaxException; import org.junit.Test; import eu.dnetlib.data.tool.FileSequencer; public class FileSequencerTest { private String[] args = { "/xfs/mdstores/DMF_small", "hdfs://node1.hadoop.research-infrastructures.eu/tmp/DMF_seq", "/tmp/mapping.txt" }; @Test public void testConstructor() throws URISyntaxException, IOException { new FileSequencer(args); } @Test public void testRun() throws URISyntaxException, IOException { new FileSequencer(args).run(); } }