package eu.dnetlib.iis.primer.example;

import eu.dnetlib.iis.IntegrationTest;
import org.junit.Assert;
import org.junit.Test;
import org.junit.experimental.categories.Category;

import java.io.File;

/**
 * 
 * @author Mateusz Fedoryszak
 *
 */
@Category(IntegrationTest.class)
public class ExistenceTest {
    private static final File primedClassDir = new File("target/primed");
	@Test
	public void testConverter() {
        Assert.assertTrue(new File(primedClassDir, "my_test_workflow/oozie_app/workflow.xml").exists());
	}
	
}
