MentionDetectorTest.java 478 Bytes
package pl.waw.ipipan.zil.core.md;

import java.io.IOException;

import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;

public class MentionDetectorTest {

	@Rule
	public TemporaryFolder results = new TemporaryFolder();

	@Test
	public final void test() throws IOException {
		String[] args = {
				MentionDetectorTest.class.getResource("/example_test_tei/")
						.getFile(),
				results.newFolder().getAbsolutePath() };
		Main.main(args);
	}
}