package org.gcube.resourceregistry; import java.io.File; import org.junit.Test; public class ContextCreatorTest extends org.gcube.ScopedTest { @Test public void createAll() throws Exception { File src = new File("src"); File test = new File(src, "test"); File resources = new File(test, "resources"); File voFile = new File(resources, "scopedata.xml"); ContextCreator contextCreator = new ContextCreator(); contextCreator.all(voFile); } }